forked from nytimes/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.57 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
{
"name": "library",
"version": "1.0.4",
"description": "A collaborative newsroom documentation site, powered by Google Docs.",
"main": "server/index.js",
"dependencies": {
"@google-cloud/datastore": "^1.4.2",
"assert": "^1.4.1",
"cache-manager": "^2.9.0",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.2",
"deepmerge": "^2.2.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-promise-router": "^3.0.3",
"express-session": "^1.15.6",
"google-auth-library": "^3.1.1",
"googleapis": "^37.2.0",
"helmet-csp": "^2.7.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.14",
"md5": "^2.2.1",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"pretty": "^2.0.0",
"promise-inflight": "^1.0.1",
"slugify": "^1.3.4",
"unescape": "^1.0.1",
"winston": "^2.4.4",
"xlsx": "^0.11.19"
},
"devDependencies": {
"concurrently": "^3.6.1",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"sinon": "^6.3.5",
"supertest": "^3.4.2",
"valid-url": "^1.0.9"
},
"scripts": {
"start": "node server/index.js",
"build": "node-sass --include-path custom/styles --include-path styles/partials --source-map public/css/style.css.map --source-map-contents styles/style.scss public/css/style.css",
"debug": "node -r dotenv/config --inspect --debug-brk server/index.js",
"watch": "concurrently \"nodemon --inspect=0.0.0.0 -r dotenv/config -e js,ejs server/index.js\" \"nodemon -e scss --watch styles --watch custom/styles -x npm run build\"",
"test": "NODE_ENV=test mocha test/**/*.test.js -r ./test/utils/bootstrap.js --recursive --exit",
"test:cover": "NODE_ENV=test nyc --include=server/** --reporter=html --reporter=text mocha test/**/*.test.js -r ./test/utils/bootstrap.js --recursive --exit",
"lint": "eslint ./server",
"gcp-build": "./bin/install_customizations && npm run build && ./bin/update_gae_pkg"
},
"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": "10.x",
"npm": "6.5.x"
},
"homepage": "https://github.com/nytimes/library#readme"
}