-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.41 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.41 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
{
"name": "quizjs",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "18.2.x",
"react-dom": "18.2.x",
"react-redux": "8.0.x",
"redux": "4.2.x",
"redux-freeze": "0.1.x",
"redux-thunk": "2.4.x",
"reselect": "4.1.x",
"tslib": "2.4.x"
},
"scripts": {
"start": "webpack serve --mode=development",
"build": "webpack --mode=production",
"stylelint": "stylelint ./src/*.css ./src/***/*.css",
"stylelint-fix": "stylelint ./src/*.css ./src/***/*.css --fix",
"eslint": "eslint src",
"eslint-fix": "eslint src --fix",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"lint": "npm run prettier && npm run eslint && npm run stylelint",
"lint-fix": "npm run prettier-fix && npm run eslint-fix && npm run stylelint-fix",
"bundle-report": "webpack --analyze"
},
"devDependencies": {
"@types/node": "18.11.x",
"@types/react": "18.0.x",
"@types/react-dom": "18.0.x",
"@types/react-redux": "7.1.x",
"@typescript-eslint/eslint-plugin": "5.48.x",
"@typescript-eslint/parser": "5.48.x",
"autoprefixer": "10.4.x",
"clean-webpack-plugin": "4.0.x",
"copy-webpack-plugin": "11.0.x",
"css-loader": "6.7.x",
"css-minimizer-webpack-plugin": "4.2.x",
"eslint": "8.31.x",
"eslint-config-prettier": "8.6.x",
"eslint-plugin-import": "2.26.x",
"eslint-plugin-jsdoc": "39.6.x",
"eslint-plugin-react-hooks": "4.6.x",
"file-loader": "6.2.x",
"html-loader": "4.2.x",
"html-webpack-plugin": "5.5.x",
"map.prototype.tojson": "0.1.x",
"mini-css-extract-plugin": "2.7.x",
"normalize.css": "8.0.x",
"postcss": "8.4.x",
"postcss-loader": "7.0.x",
"prettier": "2.8.x",
"source-map-loader": "4.0.x",
"style-loader": "3.3.x",
"stylelint": "14.16.x",
"stylelint-config-prettier": "9.0.x",
"stylelint-config-standard-scss": "6.1.x",
"stylelint-order": "6.0.x",
"svg-url-loader": "8.0.x",
"ts-loader": "9.4.x",
"typescript": "4.9.x",
"webpack": "5.75.x",
"webpack-bundle-analyzer": "4.7.x",
"webpack-cli": "5.0.x",
"webpack-dev-server": "4.11.1",
"workbox-webpack-plugin": "6.5.x"
}
}