generated from SolidZORO/mkn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.94 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
{
"name": "mkn",
"description": "Make React Project w/ Next.js and Typescript",
"version": "0.2.3",
"license": "MIT",
"author": "Jason Feng <[email protected]>",
"private": true,
"sideEffects": [
"*.less",
"*.css"
],
"scripts": {
"-------------------------------- LINT ----": "----",
"format": "prettier --write src/**/*.ts{,x}",
"tsc-check": "tsc -v && tsc --noEmit",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"fix": "yarn lint --fix && yarn format",
"-------------------------------- TOOL ----": "----",
"nuke": "rimraf .next && rimraf .next && rimraf yarn.lock && rimraf node_modules && yarn",
"clear": "rimraf .next",
"prepare": "husky install",
"-------------------------------- VERSIVE ----": "----",
"versionup": "standard-version -r patch",
"versionup:minor": "standard-version -r minor",
"versionup:major": "standard-version -r major",
"versionup:init": "standard-version --first-release",
"-------------------------------- DEV ----": "----",
"dev": "next dev",
"start": "next start",
"serve": "yarn build && yarn start",
"export": "next export",
"-------------------------------- PROD ----": "----",
"build": "next build"
},
"dependencies": {
"antd": "^4.16.13",
"autoprefixer": "^10.4.0",
"babel-plugin-add-react-displayname": "^0.0.5",
"babel-plugin-inline-react-svg": "^2.0.1",
"classnames": "^2.3.1",
"css-loader": "^6.5.0",
"next": "12.0.2",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.8.2",
"next-plugin-antd-less": "^1.5.2",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet-async": "^1.1.2",
"react-icons": "^4.3.1",
"react-use": "^17.3.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^14.1.0",
"@qcolate/eslint-config": "^1.0.3",
"@types/classnames": "^2.3.1",
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-plugin-import": "^1.13.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"commitlint": "^14.1.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "14.0.1",
"eslint-config-next": "^12.0.2",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
}
}