This repository has been archived by the owner on May 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@gleez/react-boilerplate",
"version": "1.1.0",
"description": "Quick packager-agnostic boilerplate for React modules using JSX",
"main": "webpack.config.js",
"repository": {
"type": "git",
"url": "https://github.com/gleez/react-boilerplate.git"
},
"author": "Gleez Technologies",
"license": "MIT",
"homepage": "http://react.gleez.com/",
"bugs": {
"url": "https://github.com/gleez/react-boilerplate/issues"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"flux",
"es6",
"reload",
"react-component",
"hot reload",
"jsx",
"webpack"
],
"scripts": {
"clean": "rimraf public",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"deploy": "webpack -p --progress --colors --config webpack.production.config.js --json > webpack-stats.json",
"predeploy": "rimraf public",
"publish": "npm run deploy && git checkout gh-pages && rimraf assets && cp -rf public/* . && git add -A && git commit -m \"Code update\" && git push origin gh-pages && git checkout master"
},
"devDependencies": {
"babel": "^5.8.9",
"babel-core": "^5.8.9",
"babel-loader": "^5.3.2",
"css-loader": "^0.15.6",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"form-data-to-object": "^0.1.0",
"formsy-react": "git://github.com/christianalfoni/formsy-react.git#react-0.14",
"html-loader": "^0.3.0",
"html-webpack-plugin": "^1.6.0",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"react-hot-loader": "^1.2.8",
"rimraf": "^2.4.2",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.10.5",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"bootstrap": "^3.3.5",
"classnames": "^2.1.3",
"flux": "^2.0.3",
"flux-constant": "^1.0.4",
"font-awesome": "^4.3.0",
"history": "^1.9.0",
"jwt-decode": "^1.4.0",
"object-assign": "^3.0.0",
"react": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1",
"react-router": "^1.0.0-rc1",
"superagent": "^1.2.0"
}
}