-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
55
{
"name": "react-tourist",
"version": "0.0.6",
"author": "Chua Wei Kuan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "khankuan/react-tourist"
},
"main": "./lib/react-tourist.js",
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"build": "export NODE_ENV=production; webpack -p",
"prepublish": "npm run build",
"build-example": "git checkout master; cd example; npm run build; cd ..; git add example/src/www && git commit -m \"commit build example\"; git push; git subtree split --prefix example/src/www -b gh-pages; git push -f origin gh-pages:gh-pages; git branch -D gh-pages"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"dependencies": {},
"keywords": [
"react",
"tour guide"
],
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"autoprefixer-loader": "^2.0.0",
"babel-core": "^6.1.4",
"babel-eslint": "^3.1.23",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.4",
"babel-preset-react": "^6.1.4",
"babel-preset-stage-1": "^6.1.2",
"css-loader": "^0.15.2",
"eslint": "^0.24.1",
"eslint-plugin-babel": "^1.1.0",
"eslint-plugin-react": "^2.7.0",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"http-server": "^0.8.0",
"jsx-loader": "^0.13.2",
"node-libs-browser": "^0.5.2",
"node-sass": "^3.4.1",
"react-hot-loader": "^1.2.8",
"sass-loader": "^1.0.2",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
}
}