-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
78 lines (78 loc) · 1.78 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
{
"name": "dashboard",
"version": "1.0.0",
"description": "Your Team Dashboard",
"main": "pages/index.js",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "standard --verbose | snazzy && stylelint '**/*.js'",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielbayerlein/dashboard.git"
},
"keywords": [
"tv",
"dashboard"
],
"author": "Daniel Bayerlein",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielbayerlein/dashboard/issues"
},
"homepage": "https://github.com/danielbayerlein/dashboard#readme",
"dependencies": {
"babel-plugin-styled-components": "^1.13.3",
"dotenv-webpack": "^2.0.0",
"isomorphic-unfetch": "^3.1.0",
"js-base64": "^3.7.2",
"next": "^9.2.2",
"polished": "^3.6.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^4.4.1",
"tinytime": "^0.2.6",
"yup": "^0.32.11"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"snazzy": "^8.0.0",
"standard": "^16.0.4",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"standard": {
"parser": "babel-eslint"
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true,
"preprocess": false
}
]
]
},
"stylelint": {
"processors": [
"stylelint-processor-styled-components"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-styled-components"
],
"syntax": "scss"
}
}