-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 983 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
36
37
{
"name": "bicycle-geometry",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "webpack-dev-server",
"build": "webpack",
"buildw": "webpack --watch",
"deploy": "webpack && cp public/* ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"crocks": "^0.11.1",
"css-loader": "^1.0.1",
"dotenv-webpack": "^1.5.7",
"eslint": "^5.9.0",
"eslint-loader": "^2.1.1",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"style-loader": "^0.23.1",
"virtual-dom": "^2.1.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-notifier": "^1.7.0"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5"
}
}