-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 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
63
64
65
66
67
68
69
70
{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@opuscapita/react-responsive-navbar": "^3.4.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"apollo-link-schema": "^1.2.5",
"apollo-server-micro": "^2.15.0",
"babel-preset-es2015": "^6.24.1",
"bootstrap": "^4.5.0",
"emotion": "^10.0.27",
"emotion-server": "^10.0.27",
"graphql": "^15.1.0",
"graphql-tag": "^2.10.3",
"isomorphic-unfetch": "^3.0.0",
"next": "latest",
"next-urql": "^1.0.1",
"nexus": "^0.24.0",
"nexus-plugin-prisma": "^0.10.0",
"react": "^16.12.0",
"react-bootstrap": "^1.2.2",
"react-dom": "^16.12.0",
"react-router-dom": "^5.2.0",
"rsuite": "^4.8.0",
"urql": "^1.9.8"
},
"devDependencies": {
"@prisma/cli": "^2.0.1",
"@svgr/webpack": "^5.4.0",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-plugin-inline-react-svg": "^1.1.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"license": "ISC",
"lint-staged": {
"src/**/*.{ts,tsx}": "npm run lint:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}