-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.43 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
{
"name": "projectkick",
"version": "1.0.0",
"description": "projectkick",
"scripts": {
"start": "npm run build && npm run host",
"host": "node ./scripts/host.js",
"dev": "webpack serve --config ./scripts/webpack.dev.js",
"lint": "eslint -c .eslintrc --ext .js,.jsx,.ts,.tsx .",
"build": "npm run build:clean && npm run build:webpack",
"build:clean": "rimraf dist && rimraf build",
"build:webpack": "webpack --config ./scripts/webpack.prod.js"
},
"author": "Herr Zatacke",
"private": true,
"projectConfig": {
"projectName": "projectkick"
},
"type": "module",
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@types/node": "^20.12.8",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"autoprefixer": "^10.4.14",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"chalk": "^5.2.0",
"clsx": "^2.1.1",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.30.1",
"css-loader": "^6.7.3",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"express": "^4.18.2",
"flatten": "^1.0.3",
"html-webpack-plugin": "^5.5.1",
"is-color": "^1.0.2",
"mini-css-extract-plugin": "^2.7.5",
"node-watch": "^0.7.3",
"param-case": "^3.0.4",
"postcss": "^8.4.38",
"postcss-loader": "^7.3.0",
"postcss-preset-env": "^8.3.2",
"postcss-pxtorem": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reset-css": "^5.0.1",
"rimraf": "^5.0.0",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"sass-resources-loader": "^2.2.5",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.4.5",
"webpack": "^5.81.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"webpack-merge": "^5.8.0",
"zustand": "^4.5.2"
},
"dependencies": {
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}