-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 929 Bytes
/
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
{
"name": "server",
"version": "1.0.0",
"description": "backend for shopping app",
"main": "server.js",
"scripts": {
"build": "babel ./src --out-dir ./build",
"buildd": "babel ./src --out-file index.js",
"start": "node ./build/server.js",
"dev": "npx nodemon --exec npx babel-node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "overrevvv",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.22.3",
"body-parser": "^1.20.2",
"connect-history-api-fallback": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.2",
"mongodb": "^5.6.0"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/node": "^7.22.1",
"@babel/plugin-transform-runtime": "^7.22.4",
"@babel/preset-env": "^7.22.4"
}
}