-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.59 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
52
{
"name": "binance-test",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"bin": {
"server": "dist/bin/server.js"
},
"scripts": {
"inst": "npm install",
"lint": "npx eslint .",
"build-server": "babel server --out-dir dist --source-maps inline && cp -r server/views dist/views && chmod +x dist/bin/server.js",
"build-front": "npx webpack -p --env production",
"build-app": "rm -rf dist && npm run build-front && npm run build-server",
"start-server": "npx nodemon --exec npx babel-node server/bin/server.js",
"start-front": "npx webpack-dev-server",
"develop": "npm run start-server & npm run start-front",
"start": "dist/bin/server.js",
"postinstall": "npm run build-app"
},
"author": "mbalyura <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"node-binance-api": "^0.11.7",
"pug": "^2.0.4",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@babel/polyfill": "^7.8.3",
"@babel/node": "^7.8.7",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/cli": "^7.8.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "7.0.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"html-webpack-plugin": "^4.3.0",
"nodemon": "^2.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}