-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.81 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
{
"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.5.1",
"dotenv-webpack": "^1.5.5",
"isomorphic-unfetch": "^2.0.0",
"js-base64": "^2.4.3",
"next": "^6.0.1",
"polished": "^1.9.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"styled-components": "^3.2.6",
"tinytime": "^0.2.6",
"yup": "^0.27.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"react-live-clock": "^2.0.3",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1"
},
"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"
}
}