This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
118 lines (118 loc) · 2.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "ueno-next-starter",
"description": "Opinionated Next starter by Ueno",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"next",
"starter",
"react",
"typescript",
"next-starter",
"nextjs",
"ueno"
],
"contributors": [
"Birkir Gudjonsson <birkir.gudjonsson@gmail.com>",
"Jérémy Barbet <jeremgraph@gmail.com>"
],
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node build/index.js",
"lint": "npm run prettier && npm run tslint && npm run stylelint",
"tslint": "tslint --fix 'src/**/*.{ts,tsx}' --project tsconfig.json",
"stylelint": "stylelint 'src/**/*.scss' --syntax scss",
"prettier": "prettier --list-different '**/*.{ts,tsx,js,jsx,json,md}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"prettier --write"
],
"*.{ts,tsx}": [
"tslint --fix"
]
},
"stylelint": {
"extends": "stylelint-config-recommended",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"if",
"else",
"mixin",
"each",
"include",
"function",
"return",
"warn",
"for"
]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global"
]
}
]
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100
},
"dependencies": {
"@zeit/next-sass": "1.0.1",
"dotenv": "8.2.0",
"express": "4.17.1",
"lodash": "4.17.15",
"next": "9.3.4",
"next-compose-plugins": "2.2.0",
"next-fonts": "1.0.3",
"next-images": "1.4.0",
"next-react-svg": "1.1.0",
"next-videos": "1.1.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "5.2.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.8.3",
"@types/express": "4.17.4",
"@types/lodash": "4.14.149",
"@types/next": "9.0.0",
"@types/node": "13.9.8",
"@types/react": "16.9.31",
"@types/react-dom": "16.9.6",
"@types/react-helmet": "5.0.15",
"autoprefixer": "9.7.5",
"classnames": "2.2.6",
"cross-env": "7.0.2",
"husky": "4.2.3",
"lint-staged": "10.1.1",
"next-classnames-loader": "1.0.3",
"node-sass": "4.13.1",
"nodemon": "2.0.2",
"postcss-csso": "4.0.0",
"prettier": "2.0.2",
"stylelint": "13.2.1",
"stylelint-config-recommended": "3.0.0",
"svg-react-loader": "0.4.6",
"ts-node": "8.8.1",
"tslint": "6.1.1",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.2.0",
"typescript": "3.8.3"
}
}