-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·85 lines (85 loc) · 2.59 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": "react-ts",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "scripty",
"prod": "scripty",
"json-server": "json-server --watch ./__json-server-mock__/db.json"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@svgr/webpack": "^4.3.3",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.7",
"@types/webpack-env": "^1.14.1",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"autoprefixer": "^9.7.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^7.18.0",
"eslint-config-alloy": "^3.10.0",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^4.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"html-withimg-loader": "^0.1.16",
"husky": ">=4",
"json-server": "^0.16.3",
"lint-staged": ">=10",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "2.2.1",
"progress-bar-webpack-plugin": "^1.12.1",
"purifycss-webpack": "^0.7.0",
"react-hot-loader": "^4.12.17",
"sass-loader": "^8.0.0",
"scripty": "^1.9.1",
"style-loader": "^1.0.0",
"typescript": "^4.1.3",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-build-notifier": "^2.0.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-jarvis": "^0.3.2",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"yargs-parser": "^16.1.0",
"yarn": "^1.19.1"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{js,css,md,ts.tsx}": [
"eslint --fix",
"prettier --write"
]
}
}