-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.2 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": "blog-demo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next",
"build": "yarn prisma:generate && next build",
"start": "yarn prisma:deploy && next start",
"type-check": "tsc",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet",
"prisma:generate": "yarn prisma generate",
"prisma:deploy": "yarn prisma migrate deploy --preview-feature",
"prisma:dev": "yarn prisma migrate dev --preview-feature",
"cy:open": "cypress open",
"cy:ci": "cypress run --headless --config video=false",
"e2e": "start-test dev 3000 cy:open",
"e2e:ci": "start-test dev 3000 cy:ci",
"test": "jest",
"test:ci": "jest --ci && yarn e2e:ci"
},
"dependencies": {
"@headlessui/react": "0.2.0",
"@prisma/client": "2.16.0",
"ajv": "7.0.4",
"ajv-formats": "1.5.1",
"ajv-keywords": "4.0.0",
"base-x": "3.0.8",
"date-fns": "2.16.1",
"escape-html": "1.0.3",
"jsonwebtoken": "8.5.1",
"ky": "0.25.1",
"ky-universal": "0.8.2",
"next": "10.0.6",
"react": "17.0.1",
"react-dom": "17.0.1",
"swr": "0.4.1",
"slug": "4.0.2",
"sqlite3": "5.0.1",
"truncate-utf8-bytes": "1.0.2",
"validator": "13.5.2"
},
"devDependencies": {
"@tailwindcss/ui": "0.7.2",
"@tailwindcss/forms": "0.2.1",
"@prisma/cli": "2.16.0",
"@prisma/sdk": "2.16.0",
"@types/jest": "26.0.20",
"@types/jsonwebtoken": "8.5.0",
"@types/node": "^12.12.6",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@typescript-eslint/parser": "4.14.2",
"@typescript-eslint/eslint-plugin": "4.14.2",
"autoprefixer": "10.1.0",
"babel-jest": "26.6.3",
"cypress": "6.4.0",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"jest": "26.6.3",
"ts-jest": "26.5.0",
"prettier": "2.2.1",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "6.7.0",
"postcss": "8.2.1",
"react-test-renderer": "17.0.1",
"slate": "0.60.2",
"slate-history": "0.60.2",
"slate-react": "0.60.2",
"start-server-and-test": "1.12.0",
"tailwindcss": "2.0.2",
"typescript": "4.1.3"
}
}