-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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": "stock-monitor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"start:dev": "nodemon --exec babel-node src/server.js",
"test": "mocha src/test/*.js",
"test-watch": "nodemon --exec 'npm test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yinnyC/stock_monitor_API.git"
},
"keywords": [],
"author": "Yin",
"license": "MIT",
"bugs": {
"url": "https://github.com/yinnyC/stock_monitor_API/issues"
},
"homepage": "https://github.com/yinnyC/stock_monitor_API#readme",
"dependencies": {
"assert": "^2.0.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chai": "^4.3.0",
"chai-http": "^4.3.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.1",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.3.0",
"mongoose": "^5.11.15",
"path": "^0.12.7",
"request": "^2.81.0"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/node": "^7.13.0",
"@babel/preset-env": "^7.13.0",
"babel-preset-airbnb": "^5.0.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.3.1",
"nodemon": "^2.0.7"
},
"lint": "eslint 'src/**/*.js' --fix"
}