-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.58 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
{
"license": "(MIT OR Apache-2.0)",
"scripts": {
"dev": "next dev",
"build:local": "next build",
"build": "npx prisma migrate deploy && next build",
"lint": "next lint",
"start": "next start",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed/index.ts"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "avoid",
"singleQuote": true,
"overrides": [
{
"files": [
"**/*.css",
"**/*.scss",
"**/*.html"
],
"options": {
"singleQuote": false
}
}
]
},
"dependencies": {
"@next/font": "^13.0.3",
"cypress": "^12.5.0",
"next": "^13.0.0",
"react": "^18.0.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"sharp": "^0.31.2",
"swr": "^1.3.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@prisma/client": "^4.7.0",
"@types/node": "18.8.0",
"@types/react": "18.0.21",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"postcss": "^8.4.19",
"postcss-nested": "^6.0.0",
"postcss-preset-env": "^7.8.3",
"prisma": "^4.7.0",
"stylelint": "^14.14.0",
"stylelint-config-recommended": "^9.0.0",
"typescript": "4.8.4"
}
}