-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.51 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
{
"name": "dungeon-map",
"version": "0.1.0",
"description": "A React web applicaton for mapping old videogames.",
"author": "Steve Cochrane <[email protected]>",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/stevecochrane/dungeon-map.git"
},
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve",
"test": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"jest --bail --coverage --findRelatedTests"
],
"*.{js,css,html}": "prettier --write"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"@babel/preset-typescript": "7.13.0",
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "10.0.1",
"@types/css-minimizer-webpack-plugin": "3.0.2",
"@types/fork-ts-checker-webpack-plugin": "0.4.5",
"@types/html-webpack-plugin": "3.2.5",
"@types/jest": "26.0.22",
"@types/mini-css-extract-plugin": "2.2.0",
"@types/node": "14.14.41",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-redux": "7.1.18",
"@types/terser-webpack-plugin": "5.0.4",
"@types/webpack-dev-server": "3.11.5",
"@typescript-eslint/eslint-plugin": "4.29.3",
"@typescript-eslint/parser": "4.29.3",
"autoprefixer": "10.1.0",
"babel-loader": "8.2.2",
"core-js": "3.8.1",
"css-loader": "5.0.1",
"css-minimizer-webpack-plugin": "3.0.2",
"eslint": "7.16.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "4.2.0",
"fork-ts-checker-webpack-plugin": "6.3.2",
"html-inline-css-webpack-plugin": "1.11.1",
"html-webpack-plugin": "5.3.2",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.8",
"mini-css-extract-plugin": "2.2.0",
"postcss": "8.2.10",
"postcss-import": "14.0.0",
"postcss-loader": "4.1.0",
"prettier": "1.19.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-redux": "7.2.4",
"redux": "4.0.1",
"redux-devtools-extension": "2.13.8",
"style-loader": "2.0.0",
"tailwindcss": "2.2.9",
"terser-webpack-plugin": "5.0.3",
"ts-node": "10.2.1",
"typescript": "4.2.4",
"webpack": "5.51.1",
"webpack-cli": "4.8.0",
"webpack-dev-server": "3.11.0"
}
}