-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.13 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
{
"name": "code-quiz-react",
"version": "3.3.1",
"description": "Coding training app",
"main": "src/index.tsx",
"homepage": "https://pure-js.github.io/code-quiz-react/",
"type": "module",
"sideEffects": [
"**/*.css"
],
"scripts": {
"start": "npm run dev",
"dev": "webpack serve --config webpack.dev.cjs",
"build": "webpack --config webpack.prod.cjs",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint:js": "eslint --ext .tsx,.jsx,.js,.ts src/ pages/",
"analyze": "webpack --profile --json > stats.json --config webpack.prod.cjs",
"test": "node --experimental-vm-modules node_modules/.bin/jest --config jest.config.cjs --coverage",
"release": "standard-version",
"format": "prettier --write \"**/*.+(json|yml|yaml|css|md|cjs|mjs)\""
},
"author": "pure-js",
"license": "GPL-3.0",
"engines": {
"node": ">=16.15"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.0",
"bootstrap": "^4.6.2",
"firebase": "^8.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"wouter": "^2.10.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.13.14",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.14",
"@babel/runtime": "^7.24.7",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-syntax-highlighter": "^15.5.6",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-jest": "^29.5.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-imports": "^2.0.0",
"copy-webpack-plugin": "^8.1.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^1.3.0",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^3.1.0",
"git-revision-webpack-plugin": "^3.0.6",
"html-webpack-plugin": "^5.3.1",
"jest": "^29.5.0",
"mini-css-extract-plugin": "^1.3.9",
"prettier": "^2.8.8",
"size-plugin": "^3.0.0",
"source-map-loader": "^2.0.1",
"standard-version": "^9.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.82.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"workbox-webpack-plugin": "^6.1.2"
},
"keywords": [
"quiz",
"quizzes"
],
"repository": {
"type": "git",
"url": "git+https://github.com/js-quiz/code-quiz-react.git"
},
"bugs": {
"url": "https://github.com/js-quiz/code-quiz-react/issues"
}
}