-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "gh-template-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "prettier --write .",
"vercel": "vercel .",
"vercel:login": "vercel login",
"deploy:staging": "npm run build && vercel ./ --yes --token=$VERCEL_TOKEN",
"deploy:prod": "npm run deploy:staging --prod",
"deploy:preview": "node ./scripts/preview.mjs",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"autoprefixer": "10.4.14",
"next": "13.4.4",
"octokit": "^2.0.19",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"cypress": "^12.13.0",
"eslint": "8.42.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.11.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"typescript": "5.1.3",
"vercel": "^30.2.0"
}
}