This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.94 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
{
"name": "gss2022-frontend",
"description": "Suikoden Election 2022 Frontend",
"version": "0.1.0",
"dependencies": {
"next": "12.1.6",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@bugsnag/js": "7.20.2",
"@bugsnag/plugin-react": "7.19.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/node": "18.16.3",
"@types/react": "18.0.26",
"@types/react-burger-menu": "2.8.3",
"@types/react-copy-to-clipboard": "5.0.4",
"@types/styled-components": "5.1.26",
"autoprefixer": "10.4.14",
"axios": "1.6.0",
"cypress": "12.11.0",
"daisyui": "2.51.6",
"dayjs": "1.11.7",
"eslint": "8.39.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.8.0",
"gridjs": "4.0.0",
"gridjs-react": "4.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"next-translate": "1.6.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.31",
"prettier": "2.8.8",
"react-burger-menu": "3.0.9",
"react-copy-to-clipboard": "5.1.0",
"react-twitter-embed": "4.0.4",
"sass": "1.62.1",
"sharp": "0.32.1",
"styled-components": "5.3.10",
"stylelint": "15.6.0",
"stylelint-config-standard": "33.0.0",
"stylelint-order": "6.0.3",
"tailwindcss": "3.3.2",
"typescript": "5.0.4",
"wait-on": "7.0.1"
},
"main": "index.ts",
"private": true,
"scripts": {
"build": "next build",
"cypress:exec": "run-s cypress:server:kill & run-s cypress:server:run & run-s cypress:server:wait-on && run-s cypress:run && run-s cypress:server:kill",
"cypress:run": "cypress run --browser chrome",
"cypress:server:kill": "kill $(lsof -i :3100 | grep node | awk '{print $2}')",
"cypress:server:run": "next build && next start --port 3100",
"cypress:server:wait-on": "wait-on -t 30000 http-get://localhost:3100",
"dev": "next dev",
"lint": "next lint",
"start": "next start"
}
}