This repository was archived by the owner on Apr 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.48 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.48 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "reactizer",
"version": "0.10.3",
"description": "The most hipster React boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/oreqizer/reactizer.git"
},
"scripts": {
"start": "run-p start:gulp start:nodemon",
"start:gulp": "gulp",
"start:nodemon": "nodemon ./etc/devserver --verbose",
"server": "node ./dist/server/server.js",
"server:tmp": "node ./.tmp/server/server.js",
"bundle": "gulp bundle",
"test": "jest --verbose",
"test:watch": "jest --watch=all",
"test:coverage": "jest --coverage",
"lint": "eslint \"./**/*.{js,jsx}\"",
"lint:fix": "eslint \"./**/*.{js,jsx}\" --fix",
"messages": "gulp messages",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"native": "node node_modules/react-native/local-cli/cli.js start",
"native:clean": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"postinstall": "npm run bundle"
},
"author": "oreqizer",
"license": "MIT",
"engines": {
"node": ">=6"
},
"dependencies": {
"axios": "^0.15.3",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-polyfill": "^6.23.0",
"chalk": "^1.1.3",
"cookie-parser": "^1.4.3",
"express": "^4.15.2",
"fs-extra": "^2.0.0",
"github-markdown-css": "^2.4.1",
"immutable": "^3.8.1",
"js-cookie": "^2.1.3",
"material-ui": "^0.17.0",
"moment": "^2.17.1",
"nconf": "^0.8.4",
"node-sass": "^4.5.0",
"normalize.css": "^5.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"react-intl": "^2.2.3",
"react-native": "^0.42.0",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-form-lite": "^0.8.1",
"redux-logger": "^2.8.2",
"redux-observable": "^0.14.0",
"reselect": "^2.5.4",
"rxjs": "5.2.0",
"sass-loader": "^6.0.2",
"source-map-support": "^0.4.11",
"validator": "^7.0.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"autoprefixer": "^6.7.6",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-intl": "^2.3.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"babel-register": "^6.23.0",
"css-loader": "^0.26.2",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.1.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-rimraf": "^0.2.1",
"gulp-sourcemaps": "^2.4.1",
"gulp-util": "^3.0.8",
"gulp.spritesmith": "^6.3.0",
"image-webpack-loader": "^3.2.0",
"immutable-devtools": "0.0.7",
"jest-cli": "^19.0.2",
"json-loader": "^0.5.4",
"merge-stream": "^1.0.1",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"postcss-loader": "^1.3.3",
"style-loader": "^0.13.2",
"stylus": "^0.54.5",
"stylus-loader": "^2.5.0",
"through2": "^2.0.3",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
}
}