-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.14 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
{
"name": "api-node-assignment",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"build": "babel src --out-dir dist",
"test": "NODE_ENV=testing jest --forceExit --detectOpenHandles --silent",
"dev": "nodemon --exec yarn restart",
"restart": "rimraf dist && yarn build && yarn start",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/armingdev/api-node-assignment.git"
},
"keywords": [],
"author": "Armin Gerina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/armingdev/api-node-assignment/issues"
},
"homepage": "https://github.com/armingdev/api-node-assignment#readme",
"dependencies": {
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.3",
"morgan": "^1.9.1",
"validator": "^12.1.0",
"lodash": "latest"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^25.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"rimraf": "^3.0.0",
"mock-req-res": "^1.1.4"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test-db-setup.js",
"testPathIgnorePatterns": [
"dist/"
],
"restoreMocks": true
}
}