-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.81 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "digit-span-practice",
"version": "0.1.0",
"private": true,
"homepage": "https://KS-20.github.io/digit-span-practice",
"type": "module",
"dependencies": {
"@popperjs/core": "^2.11.8",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.3.1",
"apexcharts": "^3.49.0",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"browserslist-to-esbuild": "^2.1.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.4.5",
"dropbox": "^10.34.0",
"gh-pages": "^6.1.1",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.10.3",
"pretty": "^2.0.0",
"react": "^18.3.1",
"react-apexcharts": "^1.4.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.25.1",
"selenium-webdriver": "^4.23.0",
"stream-browserify": "^3.0.0",
"sweetalert": "^2.1.2",
"util": "^0.12.5",
"vite": "^5.3.4",
"vite-tsconfig-paths": "^4.3.2",
"web-vitals": "^4.2.2",
"whatwg-fetch": "^3.6.20",
"workbox-core": "^7.1.0",
"workbox-expiration": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage .",
"test:debug": "jest --inspect-brk --runInBand --no-cache",
"serverstart": "nodemon ./src/customStorageServer/customStorageServer.js",
"productionserverstart": "pm2 --no-daemon --watch src/ start ./src/customStorageServer/customStorageServer.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-react": "^7.24.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"process": "^0.11.10",
"sass": "^1.77.8",
"stylelint": "^16.7.0",
"stylelint-config-standard": "^36.0.1",
"vite-plugin-pwa": "^0.20.0"
},
"jest": {
"testEnvironment": "jest-environment-jsdom",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/src/styleMock.js"
},
"modulePaths": [
"<rootDir>/src"
],
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
},
"extensionsToTreatAsEsm": [
".jsx"
]
}
}