-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 896 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 896 Bytes
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
{
"name": "online-chess",
"license": "MIT",
"scripts": {
"start": "node ./src/backend/server.js",
"dev": "concurrently \"npm:server\" \"npm:dev:start\" -c \"green,blue\"",
"server": "nodemon --ignore .cache/ --ignore dist/ --ignore node_modules/ ./src/backend/server.js",
"dev:start": "parcel ./src/frontend/js/App.jsx --out-dir ./dist --public-url / --port 1231",
"build": "parcel build ./src/frontend/js/App.jsx --out-dir ./dist --public-url / --no-source-maps"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"howler": "^2.2.1",
"parcel-bundler": "1.11.0",
"pug": "^3.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sass": "^1.29.0"
}
}