-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "next-starter-antoine",
"version": "0.1.0",
"keywords": [
"next",
"starter",
"next.js",
"typescript",
"template"
],
"author": {
"name": "Antoine Rousseau",
"email": "antoine@rousseau.im",
"url": "https://antoine.rousseau.im"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/antoinerousseau/next-starter-antoine"
},
"bugs": {
"url": "https://github.com/antoinerousseau/next-starter-antoine/issues",
"email": "antoine@rousseau.im"
},
"scripts": {
"dev": "next dev",
"lint": "tsc --skipLibCheck && eslint --fix \"**/*.{ts,tsx,js,jsx,json}\"",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"build": "next build && next export"
},
"dependencies": {
"@bugsnag/js": "^7.5.1",
"@bugsnag/plugin-react": "^7.3.5",
"@types/node": "^16.7.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql": "^15.4.0",
"next": "^11.1.2",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.2.1",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=10.13"
}
}