This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
95 lines (95 loc) · 3.14 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-starterkit",
"version": "1.0.3",
"description": "Build project using ReactJS, Redux, Webpack and Babel",
"scripts": {
"postinstall": "bower install --allow-root",
"check-dotenv": "babel-node utils/checkDotEnv.js",
"start:message": "babel-node utils/startMessage.js",
"prestart": "npm run check-dotenv",
"start": "npm-run-all --parallel start:message open:src lint:watch",
"open:src": "babel-node utils/srcServer.js",
"lint": "esw webpack.config.* src utils",
"lint:watch": "npm run lint -- --watch",
"remove-dist": "rimraf dist",
"build:html": "babel-node utils/buildHtml.js",
"switch-dist": "npm run remove-dist && node-mv temp-dist dist",
"check-dist": "babel-node utils/checkDist.js",
"create-temp-dist": "mkdir temp-dist",
"prebuild": "npm-run-all lint check-dist create-temp-dist build:html check-dotenv",
"build": "babel-node utils/build.js",
"postbuild": "npm-run-all switch-dist post:message",
"post:message": "babel-node utils/postMessage.js",
"prod": "node utils/distServer.js"
},
"author": "June Domingo <[email protected]>",
"license": "MIT",
"dependencies": {
"autoprefixer": "^6.5.3",
"axios": "^0.15.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-react-display-name": "^2.0.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.18.0",
"bootstrap": "v4.0.0-alpha.5",
"colors": "^1.1.2",
"compression": "^1.6.2",
"css-loader": "^0.25.0",
"enzyme": "^2.6.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"eslint-watch": "^2.1.14",
"eventsource-polyfill": "^0.9.6",
"expect": "^1.19.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"ionicons": "2.0.1",
"jquery": "^3.1.1",
"lodash": "^4.16.6",
"mocha": "^3.1.2",
"node-mv": "^0.1.3",
"npm-run-all": "^3.1.1",
"open": "^0.0.5",
"poststylus": "^0.2.3",
"progress-bar-webpack-plugin": "^1.9.0",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-document-title": "^2.0.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"toaster": "^0.1.2",
"toastr": "^2.1.2",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dotenv-plugin": "^1.4.0"
},
"devDependencies": {
"eventsource-polyfill": "^0.9.6",
"redux-immutable-state-invariant": "^1.2.4",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"repository": {
"type": "git",
"url": "https://github.com:JuneDomingo/react-starterkit"
}
}