-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.7 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.7 KB
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
{
"name": "techdegree-fullstackjs-course-review-rest-api",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"babel-node": "babel-node --presets=es2015",
"nodemon": "nodemon -e pug,js,css --exec npm run babel-node -- src/bin/www",
"start": "SET NODE_ENV=dev && npm run nodemon",
"test": "snyk test && mocha --exit --timeout 10000 --compilers js:babel-core/register",
"build": "babel src -d dist --minified --copy-files --ignore sass/*,public/stylesheets/*,frontEndJS/*,public/js/bundle.js.map",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --exit --timeout 10000 --compilers js:babel-core/register",
"lint": "node_modules/.bin/goodparts src",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-es2015": "^6.24.1",
"babel-watch": "^2.0.7",
"babelify": "^8.0.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.4",
"goodparts": "^1.2.1",
"mocha": "^5.0.5",
"nodemon": "^1.9.1",
"nyc": "^11.6.0",
"snyk": "^1.70.2"
},
"dependencies": {
"basic-auth": "^2.0.0",
"bcrypt": "^1.0.3",
"body-parser": "~1.18.2",
"config": "^1.30.0",
"connect-mongo": "^2.0.1",
"cookie-parser": "~1.4.3",
"debug": "~3.1.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"mongoose": "^5.0.11",
"mongoose-seed": "^0.4.1",
"morgan": "~1.9.0",
"pug": "^2.0.3",
"serve-favicon": "~2.4.5",
"validator": "^9.4.1"
}
}