-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
38
39
40
{
"name": "hiit-timer",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:benjamin-otto/hiit-timer.git",
"author": "benjamin-otto <benjaminotto@protonmail.ch>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "NODE_ENV='production' webpack --ignore-platform"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"dependencies": {
"prop-types": "^15.7.2",
"query-string": "^6.8.3",
"react": "^16.10.1",
"react-circular-progressbar": "^2.0.2",
"react-dom": "^16.10.1",
"react-fontawesome": "^1.6.1",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
}
}