-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
{
"name": "next-js-starter",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:eslint": "eslint \"*.{js,ts,tsx}\" \"src/**/*.{js,ts,tsx}\"",
"test:stylelint": "stylelint \"src/**/*.scss\"",
"test": "concurrently npm:test:*",
"format:eslint": "eslint --fix \"*.{js,ts,tsx}\" \"src/**/*.{js,ts,tsx}\"",
"format:prettier": "prettier --write \"*.json\"",
"format:stylelint": "stylelint --fix \"src/**/*.scss\"",
"format": "concurrently npm:format:*"
},
"dependencies": {
"@types/classnames": "^2.2.10",
"@types/lodash": "^4.14.161",
"@types/react-transition-group": "^4.4.0",
"classnames": "^2.2.6",
"lodash": "^4.17.19",
"next": "10.0.2",
"next-compose-plugins": "^2.2.0",
"next-react-svg": "^1.1.1",
"path": "^0.12.7",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-transition-group": "^4.4.1",
"sass": "^1.26.8"
},
"devDependencies": {
"@hugsmidjan/hxmstyle": "^2.6.0",
"@types/node": "^14.0.13",
"@types/react": "^16.9.38",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"concurrently": "^5.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-deprecation": "^1.1.0",
"eslint-plugin-destructuring": "^2.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.4.0",
"prettier": "^1.19.1",
"stylelint": "^13.7.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"typescript": "^3.9.5"
},
"hxmstyle": {
"options": {
"react": [
"true"
],
"stylus": false,
"typescript": [
"true"
]
},
"dependenciesAdded": [
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"eslint",
"eslint-config-prettier",
"eslint-plugin-deprecation",
"eslint-plugin-destructuring",
"eslint-plugin-prettier",
"eslint-plugin-react",
"eslint-plugin-react-hooks",
"prettier"
]
}
}