-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
138 lines (138 loc) · 3.86 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
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
{
"name": "universsr",
"version": "7.3.0",
"description": "Universal React web app boilerplate.",
"main": "index.js",
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"build:analyze": "cross-env ANALYZE_MODE=true npm run build",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"start": "cross-env NODE_ENV=production node index.js",
"test": "cross-env NODE_ENV=test jest",
"test:coverage": "rimraf resources/coverage && npm test -- --coverage",
"test:update": "npm test -- --updateSnapshot",
"test:watch": "npm test -- --watch",
"lint": "npm-run-all lint:js lint:style",
"lint:style": "stylelint **/*.{css,scss,sass} --fix",
"lint:js": "eslint . --fix",
"prepare": "husky install"
},
"engines": {
"npm": ">=6.12.0",
"node": ">=12.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/borisding/universsr.git"
},
"keywords": [
"universsr",
"universal",
"ssr",
"express",
"react"
],
"author": "Boris Ding Poh Hing",
"license": "MIT",
"sideEffects": [
"*.css",
"*.scss",
"*.sass"
],
"dependencies": {
"@loadable/component": "^5.15.2",
"@loadable/server": "^5.15.2",
"axios": "^0.26.1",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"core-js": "^3.21.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"dotenv-expand": "^8.0.2",
"express": "^4.17.3",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
"html-minifier": "^4.0.0",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-frontload": "^2.0.0",
"react-helmet": "^6.1.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.3.0",
"rimraf": "^3.0.2",
"serialize-javascript": "^6.0.0",
"serve-favicon": "^2.5.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-strict-mode": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.7",
"@loadable/babel-plugin": "^5.13.2",
"@loadable/webpack-plugin": "^5.15.2",
"autoprefixer": "^10.4.4",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"mini-css-extract-plugin": "^2.6.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"nodemon": "^2.0.15",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.0",
"react-test-renderer": "^17.0.2",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"stylelint": "^14.6.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-scss": "^4.2.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-middleware": "^5.3.1",
"webpack-hot-middleware": "^2.25.1",
"webpack-hot-server-middleware": "^0.6.1"
},
"nodemonConfig": {
"debug": true,
"ext": "js",
"env": {
"NODE_ENV": "development"
},
"ignore": [
"app/middleware/serverRenderer.js"
],
"watch": [
"app/logger/*",
"app/middleware/*",
"app/index.js",
"app/server.js"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not IE 10"
]
}