forked from nytimes/library
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "library",
"version": "1.4.2",
"description": "A collaborative newsroom documentation site, powered by Google Docs.",
"main": "server/bootstrap.js",
"dependencies": {
"@google-cloud/datastore": "^6.6.2",
"@google-cloud/secret-manager": "^4.0.0",
"@hotwired/stimulus": "^3.0.1",
"cache-manager": "^3.3.0",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"deepmerge": "^4.2.2",
"dotenv": "^8.6.0",
"ejs": "^3.1.7",
"express": "^4.17.1",
"express-promise-router": "^4.0.1",
"express-session": "^1.17.1",
"gcp-metadata": "^5.0.0",
"google-auth-library": "^6.1.6",
"googleapis": "^48.0.0",
"helmet-csp": "^3.1.0",
"highlight.js": "^10.4.1",
"js-yaml": "^3.14.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.27",
"moment": "^2.29.4",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-slack-oauth2": "^1.0.2",
"pretty": "^2.0.0",
"promise-inflight": "^1.0.1",
"slugify": "^1.4.5",
"unescape": "^1.0.1",
"winston": "^2.4.5",
"xlsx": "^0.17.0"
},
"devDependencies": {
"concurrently": "^5.2.0",
"css-loader": "^6.7.1",
"dotenv": "^8.6.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^2.6.0",
"nock": "^13.0.3",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"sinon": "^9.0.2",
"style-loader": "^3.3.1",
"supertest": "^4.0.2",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"valid-url": "^1.0.9",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"start": "node -r dotenv/config server/bootstrap.js",
"build": "npm run webpack",
"build:dev": "npm run webpack:dev",
"debug": "node -r dotenv/config --inspect --inspect-brk server/bootstrap.js",
"debug:test": "NODE_ENV=test PORT=3001 node --inspect-brk node_modules/.bin/jest --runInBand --setupFiles dotenv/config --setupTestFrameworkScriptFile='./test/utils/bootstrap.js' --forceExit",
"watch": "npm run build:dev && concurrently \"nodemon --inspect=0.0.0.0 -r dotenv/config -e js,ejs server/bootstrap.js\" \"nodemon -e scss,ts,js --watch styles --watch custom/styles --watch scripts -x npm run build:dev\"",
"test": "NODE_ENV=test PORT=3001 jest --setupFiles dotenv/config --setupTestFrameworkScriptFile='./test/utils/bootstrap.js' --forceExit",
"test:cover": "NODE_ENV=test PORT=3001 nyc --include=server/** --reporter=html --reporter=text jest test/**/*.test.js --setupFiles dotenv/config --setupTestFrameworkScriptFile='./test/utils/bootstrap.js' --forceExit",
"lint": "eslint ./server",
"lint:fix": "eslint ./server --fix",
"gcp-build": "./bin/install_customizations && npm run build && ./bin/update_gae_pkg",
"webpack": "npx webpack --mode=production",
"webpack:dev": "npx webpack --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nytimes/library.git"
},
"author": "The New York Times",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nytimes/library/issues"
},
"engines": {
"node": ">=16.0",
"npm": ">=8.0"
},
"homepage": "https://github.com/nytimes/library#readme"
}