-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 940 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": "skeleton",
"engines": {
"node": "14.x"
},
"version": "1.0.0",
"description": "",
"main": "backend/index.js",
"scripts": {
"babel-node": "babel-node",
"dev": "nodemon --exec npm run babel-node -- backend/index.js",
"start": "node dist/index.js",
"build": "babel backend --out-dir dist",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false && npm run build && npm install --prefix frontend && npm run build --prefix frontend",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Maycol EM.",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.16.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"socket.io": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4"
}
}