This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.1 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
{
"name": "chess-app",
"version": "0.2.1",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"bootstrap": "5.2.x",
"bootstrap-dark-5": "^1.1.3",
"chess.js": "0.x.x",
"critters": "^0.0.16",
"date-fns": "^2.29.2",
"dexie": "^3.2.2",
"dexie-react-hooks": "^1.1.1",
"friendly-challenge": "^0.9.0",
"next": "^13.1.0",
"next-pwa": "latest",
"react": "latest",
"react-bootstrap": "^2.7.0",
"react-bootstrap-button-loader": "^2.0.0",
"react-chessboard": "^2.0.8",
"react-dom": "latest",
"react-ssr-prepass": "latest",
"sharp": "^0.31.3",
"swagger-ui-react": "^4.14.3",
"swr": "^1.3.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@next/bundle-analyzer": "^13.1.0",
"@types/react": "^18.0.26",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.0",
"fake-indexeddb": "^4.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"postcss": "^8.4.21",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.7.1",
"prettier": "^2.8.4",
"typescript": "^4.9.4",
"webpack": "^5.76.0"
},
"scripts": {
"build": "next build",
"dev": "cross-env NOSW=1 next dev",
"start": "next start",
"export": "next export",
"staticbuild": "cross-env STATIC=1 next build && cross-env STATIC=1 next export",
"packagebuild": "cross-env STATIC=1 NOSW=1 RELEASE=1 next build && cross-env STATIC=1 NOSW=1 RELEASE=1 next export",
"lint": "next lint",
"test": "jest --watch",
"citest": "cross-env NODE_ENV=test jest --ci",
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\""
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"next",
"next/core-web-vitals"
]
},
"browserslist": {
"production": [
"defaults"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}