-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
49
50
51
{
"name": "jamquery-node",
"version": "0.1.0",
"engines": {
"node": "10.14.1"
},
"description": "Jamquery Node.js backend",
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"scripts": {
"start": "npm-run-all -lp watch:**",
"watch:client": "webpack --mode=development --watch",
"watch:server": "source config/setup-env.sh; nodemon --exec babel-node src/index.js",
"build": "npm-run-all -ls build:**",
"build:client": "webpack --mode=production",
"build:server": "babel src --out-dir dist",
"serve": "source config/setup-env.sh; export NODE_ENV=production; forever start dist/index.js"
},
"author": "tura",
"license": "MIT",
"dependencies": {
"cors": "2.8.5",
"express": "4.16.4",
"helmet": "3.15.0",
"minimist": "1.2.0",
"morgan": "1.9.1",
"mysql": "2.16.0"
},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/node": "7.2.0",
"@babel/preset-env": "7.2.0",
"@types/express": "4.16.0",
"babel-loader": "8.0.4",
"css-loader": "2.1.0",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.12.3",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.11.0",
"npm-run-all": "4.1.5",
"sass-loader": "7.1.0",
"webpack": "4.28.2",
"webpack-cli": "3.1.2"
}
}