-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 KB
/
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
38
39
40
41
42
43
44
45
{
"name": "carb",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack -p --progress --config webpack.config.js",
"dev-build": "webpack --progress -d --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --progress -d --config webpack.config.js --watch",
"start": "gulp"
},
"author": "Thomas Bourgeois",
"license": "MIT",
"dependencies": {
"bootstrap": "^4.0.0",
"font-awesome": "^4.7.0",
"hover.css": "^2.2.1",
"install": "^0.10.4",
"jquery": "^3.3.1",
"npm": "^5.6.0",
"popper.js": "^1.13.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"recharts": "^1.0.0-beta.10"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.23.6",
"gulp": "^3.9.1",
"gulp-sass": "^3.1.0",
"webpack": "^3.11.0"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}