-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "mder-backend",
"version": "0.0.1",
"main": "app.js",
"author": "phoomin009 <phoomin009@gmail.com>",
"license": "MIT",
"dependencies": {
"@influxdata/influxdb-client": "^1.17.0",
"bcrypt": "^5.0.1",
"cron": "^1.8.2",
"date-fns": "^2.22.1",
"express": "^4.17.1",
"faker": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.13",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"socket.io": "^4.1.2",
"tasuku": "^1.0.2",
"validator": "^13.6.0"
},
"scripts": {
"start": "nodemon app --ignore cache/*",
"mock": "node _mock",
"test": "node --no-warnings --experimental-vm-modules node_modules/.bin/jest --detectOpenHandles"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.5",
"superagent": "^6.1.0",
"supertest": "^6.1.3"
},
"type": "module"
}