-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.08 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
{
"name": "todo-api-design",
"version": "1.0.0",
"main": "index.js",
"author": "Aditya Sharma <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir dist",
"test": "cross-env NODE_ENV=testing jest --forceExit --detectOpenHandles --silent",
"test-routes": "npm run test -t router",
"test-models": "npm run test -t model",
"test-controllers": "npm run test -t controllers",
"test-auth": "npm run test -t Authentication:",
"dev": "nodemon --exec npm run restart",
"restart": "rimraf dist && npm run build && npm run start",
"start": "node dist/index.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"cuid": "^2.1.4",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.13",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"validator": "^10.9.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^23.4.2",
"cross-env": "^7.0.2",
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.6.0",
"mock-req-res": "^1.0.2",
"nodemon": "^1.18.3",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"supertest": "^3.3.0"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test-db-setup.js",
"testPathIgnorePatterns": [
"dist/"
],
"restoreMocks": true
}
}