-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 817 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 817 Bytes
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
{
"name": "my-apis",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"prod": "NODE_ENV=production node app.js",
"lint": "eslint .",
"clean": "rm -rf build",
"build": "npm run clean && npm run lint && echo 'Build completed!'"
},
"dependencies": {
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"circular-json": "^0.5.9",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"mongodb": "^4.1.4",
"morgan": "~1.9.1",
"stripe": "^8.188.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"babel-install": "2.1.0"
}
}