-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 867 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
{
"name": "styled-components-workshop",
"version": "1.0.0",
"description": "A boilerplate to show how styled components work",
"main": "app/main.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bguzmanrio/styled-components-workshop.git"
},
"author": "bguzman",
"license": "ISC",
"dependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-react": "^6.24.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"styled-components": "^2.4.0",
"webpack": "^3.6.0"
},
"devDependencies": {
"react-hot-loader": "^3.0.0-beta.6",
"webpack-dev-server": "^2.8.2"
}
}