-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.26 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
41
42
43
{
"name": "ronin-starter",
"version": "1.0.0",
"description": "backend",
"main": "index.js",
"repository": "https://github.com/Squishy123/ronin-starter.git",
"author": "squishy123 <christian.gnaw@gmail.com>",
"license": "AGPL-3.0",
"dependencies": {
"body-parser": "^1.19.0",
"chokidar": "^3.4.3",
"cors": "^2.8.5",
"custom-env": "^1.0.2",
"express": "^4.17.1",
"jest": "^26.5.3",
"mongoose": "^5.10.9"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.1",
"@babel/node": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.12.1",
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"cross-env": "^5.2.1",
"eslint": "^7.11.0",
"inquirer": "^6.5.0",
"nodemon": "^2.0.5",
"pm2": "^4.5.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2"
},
"scripts": {
"start": "npm run build && pm2 start pm2.config.js",
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node src/server/server.js",
"build": "npm run clean && babel ./src --out-dir ./build",
"clean": "rimraf ./build",
"format": "eslint --fix -c .eslintrc.json src/"
}
}