-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.82 KB
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": "next-prisma",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "run-s lint:*",
"lint:js": "eslint --ext .tsx,.ts src --cache",
"lint:css": "stylelint './src/**/*.tsx'",
"fix": "eslint --ext .tsx,.ts src --fix --cache",
"gql:validate": "ts-graphql-plugin validate",
"gql:report": "ts-graphql-plugin report",
"gql:typegen": "ts-graphql-plugin typegen",
"prisma:generate": "prisma generate"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"dependencies": {
"@apollo/client": "3.3.6",
"@prisma/client": "2.14.0",
"@types/node": "14.6.2",
"apollo-datasource": "0.7.2",
"apollo-server-micro": "2.19.1",
"graphql": "15.3.0",
"graphql-import": "1.0.2",
"next": "10.0.5",
"react": "16.14.0",
"react-dom": "16.14.0",
"styled-components": "5.1.1"
},
"devDependencies": {
"@prisma/cli": "2.14.0",
"@types/react": "16.9.47",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"eslint": "7.7.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"import-sort-style-module": "6.0.0",
"nodemon": "2.0.4",
"npm-run-all": "4.1.5",
"prettier": "2.1.0",
"prettier-plugin-import-sort": "0.0.4",
"stylelint": "13.6.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard": "20.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-order": "4.1.0",
"stylelint-processor-styled-components": "1.10.0",
"ts-graphql-plugin": "1.12.1",
"ts-node": "9.0.0",
"typescript": "4.1.3"
}
}