-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "node-express-es6-template",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "npm-run-all clean transpile",
"server": "nodemon --exec babel-node ./src/bin/www.js",
"start": "NODE_ENV=development npm-run-all build server",
"transpile": "babel ./src --out-dir dist --copy-files",
"clean": "rimraf dist"
},
"dependencies": {
"chalk": "^4.1.2",
"cookie-parser": "^1.4.6",
"dotenv": "^14.1.0",
"express": "^4.17.2",
"lodash": "^4.17.21",
"luxon": "^2.3.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"nodemonConfig": {
"watch": [
"src/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"eslint": "^8.6.0"
}
}