-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 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
{
"name": "ts",
"version": "1.0.0",
"description": "",
"main": "script.js",
"scripts": {
"tailwind": "npx tailwindcss -i ./src/css/input.css -o ./dist/css/output.css --watch",
"webpack:dev": "webpack --watch --mode development",
"webpack:prod": "webpack --mode production",
"build": "",
"dev": "",
"lint": "",
"test": "jest",
"start": "concurrently --kill-others \"npm run tailwind\" \"npm run webpack:dev\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@redux-devtools/core": "^3.13.1",
"@testdeck/mocha": "^0.3.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"babel-loader": "^9.1.0",
"chai": "^4.3.7",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.26.1",
"css-loader": "^6.7.2",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.2.0",
"jest": "^29.3.1",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"regenerator-runtime": "^0.13.11",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"stylelint-config-prettier": "^9.0.4",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"workbox-webpack-plugin": "^6.5.4"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"web-vitals": "^3.1.0",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-window": "^6.5.4"
}
}