-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.01 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
{
"name": "stargate",
"version": "0.0.1",
"description": "A functioning stargate",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/schoenwaldnils/stargate.git"
},
"author": {
"name": "Nils Schönwald",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev -p 3001",
"start": "next build && next start -p 3001",
"test": "npm run lint",
"lint": "npm run lint:ts && npm run lint:types",
"lint:ts": "eslint . --ext .ts,.tsx",
"lint:ts-fix": "eslint . --ext .ts,.tsx --fix",
"lint:types": "tsc",
"storybook": "start-storybook -p 6001 -s public",
"build-storybook": "build-storybook -o public/storybook --quiet"
},
"keywords": [
"next.js",
"nextjs",
"static",
"css",
"stargate"
],
"dependencies": {
"@babel/core": "7.14.6",
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"@svgr/webpack": "5.5.0",
"@types/node": "15.12.4",
"@types/react": "17.0.11",
"btoa": "1.2.1",
"color": "4.0.1",
"date-fns": "2.22.1",
"next": "11.0.1",
"preact-robot": "0.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"robot3": "0.2.19"
},
"devDependencies": {
"@next/eslint-plugin-next": "11.0.1",
"@percy/storybook": "^3.3.1",
"@schoenwald/eslint-config-typescript": "5.0.1",
"@storybook/addon-essentials": "6.3.7",
"@storybook/addons": "6.3.7",
"@storybook/react": "6.3.7",
"@types/btoa": "1.2.3",
"@types/color": "3.0.2",
"@types/node": "^15.12.2",
"@types/react": "^17.0.5",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"prettier": "2.3.1",
"typescript": "4.3.4"
},
"husky": {
"hooks": {
"pre-commit": "NODE_ENV=production lint-staged && npm run lint:types"
}
},
"lint-staged": {
"**/*.(ts|tsx)": [
"eslint --fix"
]
}
}