-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
205 lines (205 loc) · 6.29 KB
/
package.json
File metadata and controls
205 lines (205 loc) · 6.29 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
{
"name": "react-start",
"version": "2.9.0",
"description": "heavily modified of react universally",
"main": "build/server/index.js",
"engines": {
"node": ">= 16.2.0"
},
"scripts": {
"analyze:client": "babel-node internal/scripts/analyze --client",
"analyze:server": "babel-node internal/scripts/analyze --server",
"build": "babel-node internal/scripts/build optimize",
"build:dev": "babel-node internal/scripts/build",
"clean": "cross-env babel-node internal/scripts/clean",
"deploy": "babel-node internal/scripts/deploy",
"develop": "cross-env DEPLOYMENT=development babel-node internal/development",
"lint": "eslint client server shared config internal",
"preinstall": "node internal/scripts/preinstall",
"prepush": "jest",
"start": "cross-env NODE_ENV=production node build/server",
"test": "jest --coverage",
"test:coverage": "jest --coverage",
"release:major": "changelog -M -u https://github.com/tagraha/react-start && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin --tags",
"release:minor": "changelog -m -u https://github.com/tagraha/react-start && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin --tags",
"release:patch": "changelog -p -u https://github.com/tagraha/react-start && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin --tags",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --debug-check",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"shared/**/*.{js,jsx}"
],
"setupFiles": [
"<rootDir>/internal/jest/setupFile.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|internal|node_modules|flow-typed|public)/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tagraha/react-start"
},
"keywords": [
"react",
"boilerplate",
"starter kit",
"universal",
"javascript",
"express",
"webpack"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tagraha/react-start/issues"
},
"homepage": "https://github.com/tagraha/react-start#readme",
"dependencies": {
"app-root-dir": "1.0.2",
"axios": "1.6.4",
"chalk": "2.4.2",
"compression": "1.7.4",
"cross-env": "5.2.1",
"dotenv": "8.1.0",
"express": "4.17.1",
"happypack": "5.0.1",
"helmet": "3.22.0",
"hpp": "0.2.2",
"lodash": "4.17.20",
"lodash-webpack-plugin": "0.11.5",
"modernizr": "3.7.1",
"node-notifier": "5.4.0",
"offline-plugin": "5.0.7",
"pretty-error": "2.1.1",
"prop-types": "15.7.2",
"raf": "3.4.1",
"react": "17.0.1",
"react-async-bootstrapper": "2.1.1",
"react-async-component": "2.0.0",
"react-dom": "17.0.1",
"react-helmet": "5.2.1",
"react-hot-loader": "4.12.18",
"react-jobs": "1.0.1",
"react-redux": "5.1.2",
"react-router-dom": "4.3.1",
"react-tree-walker": "4.3.0",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"source-map-support": "0.5.16",
"styled-components": "4.3.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-react-inline-elements": "^7.0.0",
"@babel/plugin-transform-react-jsx-self": "^7.0.0",
"@babel/plugin-transform-react-jsx-source": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-3": "7.0.0",
"@babel/template": "^7.0.0",
"all-contributors-cli": "6.7.0",
"assets-webpack-plugin": "4.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "25.2.4",
"babel-loader": "^8.0.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"chokidar": "3.0.1",
"css-loader": "3.4.1",
"detect-port-alt": "1.1.6",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"enzyme-to-json": "3.3.5",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "1.6.1",
"file-loader": "5.0.2",
"glob": "7.1.4",
"html-webpack-plugin": "4.0.3",
"husky": "4.0.5",
"istanbul-api": "2.0.6",
"istanbul-reports": "3.0.1",
"jest": "25.2.4",
"lint-staged": "8.2.1",
"md5": "2.2.1",
"mini-css-extract-plugin": "0.9.0",
"modernizr-loader": "1.0.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"prettier": "2.0.2",
"react-dev-utils": "10.2.1",
"react-test-renderer": "17.0.1",
"redux-mock-store": "1.5.3",
"regenerator-runtime": "0.13.2",
"request": "2.88.0",
"rimraf": "2.6.3",
"semver": "7.3.8",
"serialize-javascript": "3.0.0",
"style-loader": "1.1.3",
"terser-webpack-plugin": "2.3.5",
"uglifyjs-webpack-plugin": "2.2.0",
"uuid": "3.3.3",
"webpack": "4.42.1",
"webpack-bundle-analyzer": "3.6.1",
"webpack-dev-middleware": "3.7.2",
"webpack-hot-middleware": "2.25.0",
"webpack-node-externals": "1.7.2"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb",
"prettier"
],
"env": {
"browser": true,
"es6": true,
"node": true,
"jest": true
},
"rules": {
"linebreak-style": 0,
"no-underscore-dangle": 0,
"prefer-destructuring": 0,
"react/jsx-filename-extension": 0,
"react/sort-comp": 0
}
},
"eslintIgnore": [
"node_modules/",
"build/"
],
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"object-curly-newline": false
}
}