-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 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
{
"name": "neptune",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run css-build && node ./src/bin/www",
"devStart": "nodemon -e css,js,hbs,json -x \"npm run css-build && node src/bin/www\"",
"css-watch": "postcss ./css/index.css --output ./public/style.min.css --watch --config ./postcss.config.js",
"css-build": "postcss ./css/index.css --output ./public/style.min.css --config ./postcss.config.js",
"test": "NODE_ENV=test tape tests/*test.js | tap-spec",
"nyc": "nyc npm test && nyc report --reporter=html && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build": "node src/database/dbBuild.js",
"testbuild": "node src/database/resetTestDb.js"
},
"nodemonConfig": {
"ignore": [
"public/style.min.css"
]
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"cookie-session": "^1.3.2",
"debug": "~2.6.3",
"env2": "^2.2.0",
"express": "~4.15.2",
"express-handlebars": "^3.0.0",
"hbs": "~4.0.1",
"morgan": "~1.8.1",
"path": "^0.12.7",
"pg-promise": "^6.10.1",
"postmark": "^1.4.1",
"randomstring": "^1.1.5",
"serve-favicon": "~2.4.2",
"tachyons-custom": "^4.6.0"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"codecov": "^2.3.0",
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"nock": "^9.0.22",
"nodemon": "^1.12.1",
"nyc": "^11.2.1",
"postcss-clean": "^1.1.0",
"postcss-cli": "^4.1.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.1.0",
"postcss-import": "^11.0.0",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
}
}