-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.78 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
{
"name": "movie",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm-run-all test build server",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register test/routes/user-test.js",
"test:watch": "npm run test -- --watch",
"coverage": "cross-env NODE_ENV=test PORT=4000 nyc mocha test/routes/user-test.js",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls",
"custom-build": "npx webpack --config build/webpack.custom.prod.config.js",
"postbuild": "npm run server",
"prebuild": "npm-run-all test clean",
"build": "babel ./ --out-dir lib/ --ignore ./node_modules,./.babelrc,./package.json,./package-lock.json,./test --copy-files",
"server": "cross-env NODE_ENV=dev PORT=3000 node lib/bin/www",
"clean": "rimraf ./lib && mkdir lib",
"server:watch": "cross-env NODE_ENV=dev nodemon --exec babel-node bin/www",
"lint": "esw ./test ./routes ./models/ app.js",
"lint:watch": "npm run lint -- --watch"
},
"dependencies": {
"bcrypt": "^3.0.2",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"mongo": "^0.1.0",
"mongodb": "^3.1.6",
"mongodb-core": "^3.1.5",
"mongoose": "^5.3.2",
"morgan": "~1.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"chai-things": "^0.2.0",
"coveralls": "^2.13.1",
"cross-env": "^5.2.0",
"eslint": "^5.10.0",
"eslint-plugin-json": "^1.3.2",
"eslint-watch": "^4.0.2",
"mocha": "^3.4.2",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0"
}
}