This repository was archived by the owner on Oct 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.97 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.97 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "zeal-react-boilerplate",
"version": "0.0.1",
"description": "Zeal's React/Redux boilerplate setup",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/webpack",
"dev": "webpack-dashboard -- webpack-dev-server --devtool eval --progress --colors --hot --history-api-fallback",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "NODE_ENV=production eslint 'client/**/*.js' --max-warnings 0",
"lint:sass": "NODE_ENV=production sass-lint -v --max-warnings 0",
"postinstall": "yarn build",
"prepush": "opt --out prepush --exec 'yarn validate'",
"start": "webpack-dev-server --config webpack/starterApp.js --devtool eval --progress --colors --hot --history-api-fallback --open",
"test": "jest",
"test:watch": "yarn test -- --watch",
"test:coverage": "yarn test -- --verbose --coverage",
"validate": "npm-run-all --parallel test lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingZeal/react-boilerplate.git"
},
"homepage": "https://github.com/CodingZeal/react-boilerplate",
"bugs": {
"url": "https://github.com/CodingZeal/react-boilerplate/issues"
},
"author": "Randy Coulman <randy@codingzeal.com> (http://codingzeal.com)",
"license": "MIT",
"engines": {
"node": "6.9.1",
"npm": "3.10.8"
},
"private": true,
"dependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"classnames": "^2.2.5",
"css-loader": "^0.26.1",
"eslint": "^3.11.1",
"eslint-config-zeal": "^0.14.1",
"eslint-import-resolver-webpack": "^0.7.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-react-native": "^2.2.0",
"expect-react-shallow": "^1.2.1",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flux-standard-action": "^1.0.0",
"foundation-apps": "^1.2.0",
"history": "4.4.1",
"humps": "^2.0.0",
"husky": "^0.11.9",
"imports-loader": "^0.7.0",
"json-loader": "^0.5.4",
"node-sass": "^3.13.0",
"npm-run-all": "^3.1.2",
"opt-cli": "^1.5.1",
"ramda": "^0.22.1",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.4",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-api-middleware": "^1.0.2",
"redux-devtools-extension": "^1.0.0",
"redux-form": "^6.2.1",
"redux-thunk": "^2.1.0",
"sass-lint": "^1.10.2",
"sass-loader": "^4.0.2",
"sasslint-webpack-plugin": "^1.0.4",
"style-loader": "^0.13.1",
"testdouble": "^1.9.1",
"url-loader": "^0.5.7",
"use-named-routes": "^0.3.2",
"webpack": "^1.13.3",
"webpack-dashboard": "^0.2.0",
"webpack-dev-server": "^1.16.2"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss)$": "identity-obj-proxy"
},
"modulePaths": [
"<rootDir>/client/"
],
"coverageReporters": [
"text"
],
"collectCoverageFrom": [
"client/**/*.js",
"!client/**/*-spec.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/client/test/specHelper.js"
},
"babel": {
"presets": [
"latest",
"react",
"stage-1"
],
"plugins": [
"react-hot-loader/babel",
"transform-decorators-legacy",
"transform-runtime"
]
},
"devDependencies": {
"babel-jest": "^17.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^17.0.0",
"react-test-renderer": "^15.4.1"
}
}