-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.23 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.23 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
{
"name": "css-in-js",
"version": "0.0.1",
"description": "A set of examples and experiments for CSS-in-JS Web4WD talk",
"scripts": {
"build": "webpack",
"prestart": "webpack",
"start": "webpack-dev-server"
},
"repository": "https://github.com/zen-js-code/css-in-js.git",
"author": "Dmitry Nutels <dnutels@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"html-webpack-plugin": "^2.30.1",
"optimize-js-plugin": "^0.0.4",
"script-ext-html-webpack-plugin": "^1.8.5",
"uglify-es": "^3.0.28",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"prop-types": "^15.5.7-alpha.1",
"react": "^16.0.0-beta.5",
"react-dom": "^16.0.0-beta.5",
"react-hot-loader": "^3.0.0-beta.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2"
}
}