-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1020 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
{
"name": "othello",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/y-i/othello.git",
"author": "y-i <[email protected]>",
"license": "MIT",
"scripts": {
"serve": "npm-run-all --serial clean build:development serve:start",
"serve:start": "npm-run-all --parallel serve:watch serve:server",
"serve:watch": "webpack --watch --progress --config webpack.config.js",
"serve:server": "browser-sync start --config bs-config.js",
"build": "npm-run-all --serial clean build:production",
"build:production": "webpack -p --progress --devtool hidden-source-map --config webpack.config.js",
"build:development": "webpack --progress --config webpack.config.js",
"clean": "rm -rf ./dist/js/*"
},
"devDependencies": {
"browser-sync": "^2.26.7",
"html-webpack-plugin": "^3.2.0",
"npm-run-all": "^4.1.5",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"private": true
}