-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 973 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
32
33
34
35
{
"name": "chess_clock",
"version": "1.0.0",
"description": "An online chess clock.",
"main": "index.js",
"scripts": {
"build": "webpack --mode production --config webpack.prod.js",
"start": "webpack-dev-server --mode development --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iambw/chess_clock.git"
},
"keywords": [],
"author": "brandon_wallace",
"license": "ISC",
"bugs": {
"url": "https://github.com/iambw/chess_clock/issues"
},
"homepage": "https://github.com/iambw/chess_clock#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"css-loader": "^2.1.1",
"extract-loader": "^3.2.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}