-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 866 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
{
"name": "mltest",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/walopper/mltest.git",
"author": "Alejandro Walo <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node ./server/server.js",
"deps": "yarn install && cd client && yarn install && cd ..",
"build:client": "cd client && node ./scripts/build.js && cd ..",
"serve:client": "serve -s dist",
"dev": "nodemon ./server/server.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"morgan": "^1.9.0",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"autoprefixer": "^8.5.0",
"colors": "^1.2.5",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.8.2",
"extract-loader": "^2.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"serve": "^7.2.0"
}
}