forked from krasimir/react-cssx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1014 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1014 Bytes
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
{
"name": "react-cssx",
"version": "1.0.3",
"description": "Proof of concept about using CSSX in React",
"main": "lib/CSSX.js",
"author": {
"name": "Krasimir Tsonev",
"email": "info@krasimirtsonev.com",
"url": "http://krasimirtsonev.com"
},
"license": "MIT",
"keywords": [
"react",
"css",
"cssx"
],
"repository": {
"type": "git",
"url": "git@github.com:krasimir/react-and-css.git"
},
"scripts": {
"dev": "webpack --watch --inline",
"dev-example": "webpack --config webpack.config.example.js --watch --inline",
"build": "webpack",
"update-site": "gco gh-pages && git merge origin/master && ggpush && gco master"
},
"dependencies": {
"cssx": "3.8.2"
},
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.6.5",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"cssx-loader": "3.8.2",
"react": "0.14.7",
"react-dom": "0.14.7",
"webpack": "1.12.14"
}
}