-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "react-inline-css",
"description": "Inline CSS in your React components, namespaced automatically.",
"version": "2.3.1",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/RickWong/react-inline-css.git"
},
"homepage": "https://github.com/RickWong/react-inline-css",
"keywords": [
"react",
"inline",
"css",
"react-component",
"style"
],
"main": "src/react-inline-css",
"scripts": {
"localhost": "sleep 2; which open && open http://localhost:8080",
"build": "webpack --verbose --colors --display-error-details --config webpack.client.js",
"watch-client": "webpack --verbose --colors --display-error-details --config webpack.client-watch.js && webpack-dev-server --config webpack.client-watch.js",
"watch": "concurrently 'npm run watch-client' 'npm run localhost'"
},
"devDependencies": {
"babel-core": "6.11.4",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"concurrently": "2.2.0",
"json-loader": "0.5.4",
"react": "15.3.0",
"react-create-class": "1.0.0",
"react-dom": "15.3.0",
"react-hot-loader": "1.3.0",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"prop-types": "15.5.10"
}
}