This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.98 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
{
"name": "react-webpack-starter-kit",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-cli serve --mode=development --port 3000 --env development",
"build": "cross-env NODE_ENV=production rimraf build/* && webpack-cli build --mode=production --env production",
"build:analyze": "cross-env NODE_ENV=production rimraf build/* && webpack-cli build --mode=production --env analyze",
"lint": "eslint \"./src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"unit": "cross-env NODE_ENV=test cypress open-ct --config-file cypress.config.json",
"e2e": "cross-env NODE_ENV=test start-server-and-test start http://localhost:3000 cypress:open",
"cypress:open": "cross-env NODE_ENV=test cypress open --config-file cypress.config.json",
"ci:unit": "cross-env NODE_ENV=development cypress run-ct --config-file cypress.config.json",
"ci:e2e": "cross-env NODE_ENV=development webpack-cli serve --mode=development --port 3000 --env development",
"prepare": "husky install && chmod ug+x .husky/*"
},
"keywords": [
"react",
"typescript",
"webpack"
],
"author": "TicTak21",
"license": "MIT",
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@reduxjs/toolkit": "^1.6.2",
"framer-motion": "^4",
"preact": "^10.6.4",
"react-hook-form": "^7.22.5",
"react-redux": "^7.2.6",
"react-router-dom": "6",
"redux": "^4.1.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@chakra-ui/system": "^1.9.1",
"@cypress/react": "^5.12.0",
"@cypress/webpack-dev-server": "^1.8.0",
"@prefresh/babel-plugin": "^0.4.1",
"@prefresh/core": "^1.3.2",
"@prefresh/webpack": "^3.3.2",
"@swc/core": "^1.2.127",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.5.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"copy-webpack-plugin": "^10.2.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"cypress": "^9.2.0",
"cypress-real-events": "^1.6.0",
"eslint": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"fork-ts-checker-webpack-plugin": "^6.4.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.1",
"swc-loader": "^0.1.15",
"terser-webpack-plugin": "^5.2.5",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.2",
"webpack": "^5.64.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"peerDependencies": {
"@chakra-ui/system": "^1.9.1",
"@prefresh/babel-plugin": "^0.4.1"
}
}