-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.36 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "nextjs-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next -p 8080",
"dev:inspect": "NODE_OPTIONS='--inspect' next dev -p 8080",
"build": "prisma1 generate && next build",
"start": "next start -p $PORT",
"start:local": "next start -p 8080",
"fix:other": "npm run prettier --write",
"fix:code": "npm run lint:code --fix",
"fix": "npm run fix:other && npm run fix:code",
"prettier": "prettier \"**/*.{json,md,scss,yaml,yml}\"",
"lint:other": "npm run prettier -- --list-different",
"lint:code": "eslint --ignore-path .gitignore --ignore-path .prettierignore --ext .js,.jsx .",
"lint": "npm run lint:other && npm run lint:code",
"prisma:start": "docker-compose up",
"prisma:stop": "docker-compose down",
"prisma:deploy": "prisma1 deploy",
"prisma:generate": "prisma1 generate"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@babel/parser": "^7.11.2",
"@date-io/moment": "^1.3.13",
"@hapi/iron": "^6.0.0",
"@material/button": "^5.0.0",
"@material/card": "^6.0.0",
"@material/icon-button": "^5.0.0",
"@material/list": "^5.0.0",
"@material/menu": "^5.0.0",
"@material/menu-surface": "^5.0.0",
"@material/react-material-icon": "^0.15.0",
"@material/ripple": "^5.0.0",
"@material/snackbar": "^5.0.0",
"@material/textfield": "^5.0.0",
"@material/theme": "^5.0.0",
"@rmwc/button": "^6.1.3",
"@rmwc/card": "^6.1.3",
"@rmwc/checkbox": "^6.1.3",
"@rmwc/circular-progress": "^5.7.2",
"@rmwc/drawer": "^6.0.14",
"@rmwc/elevation": "^6.1.0",
"@rmwc/formfield": "^6.0.14",
"@rmwc/icon": "^6.1.3",
"@rmwc/icon-button": "^5.7.2",
"@rmwc/list": "^6.1.3",
"@rmwc/menu": "^6.1.3",
"@rmwc/snackbar": "^6.1.3",
"@rmwc/switch": "^6.1.3",
"@rmwc/tabs": "^6.1.3",
"@rmwc/textfield": "^6.1.3",
"@webdeb/next-styles": "^1.1.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-datasource-rest": "^0.9.3",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-link-schema": "^1.2.5",
"apollo-link-token-refresh": "^0.3.2",
"apollo-link-ws": "^1.0.20",
"apollo-server-micro": "^2.16.1",
"apollo-utilities": "^1.3.4",
"bcryptjs": "^2.4.3",
"classnames": "^2.2.6",
"express": "^4.17.1",
"graphql": "^14.7.0",
"graphql-tag": "^2.11.0",
"isomorphic-fetch": "^2.2.1",
"isomorphic-unfetch": "^3.0.0",
"isomorphic-ws": "^4.0.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.19",
"material-components-web": "^3.2.0",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"next": "^9.5.1",
"next-connect": "^0.8.1",
"prisma-client-lib": "^1.34.10",
"prisma1": "^1.34.11",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-hook-form": "^5.7.2",
"sass": "^1.26.10",
"subscriptions-transport-ws": "^0.9.17",
"swr": "^0.2.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-module-resolver": "^0.16.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"fs": "0.0.1-security",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prisma": "^1.34.10"
},
"engines": {
"node": "13.x"
}
}