generated from kaypacha/next-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
135 lines (135 loc) · 3.93 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "monochromatic-ui",
"version": "1.0.0",
"author": "ByeBye-Sama",
"description": "The monochromatic component library for React.",
"repository": {
"type": "git",
"url": "https://github.com/ByeBye-Sama/monochromatic"
},
"homepage": "https://monochromatic.surge.sh/",
"keywords": [
"react",
"react-component",
"material design",
"monochromatic",
"front-end"
],
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/byebye_sama"
},
"license": "MIT",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"scripts": {
"dev": "start-storybook",
"build": "rollup -c",
"storybook:build": "build-storybook",
"storybook:deploy": "surge ./storybook-static -d https://$CIRCLE_PROJECT_REPONAME-$CIRCLE_BRANCH.surge.sh",
"lint": "eslint --ext .js,.ts,.tsx .",
"chromatic": "chromatic --project-token=$CHROMATIC_TOKEN --exit-zero-on-changes",
"chromatic:ci": "chromatic --project-token=$CHROMATIC_TOKEN --exit-zero-on-changes --auto-accept-changes",
"build-storybook": "build-storybook"
},
"dependencies": {
"global": "^4.4.0",
"lodash": "^4.17.15",
"polished": "^3.6.3",
"react-kawaii": "^0.16.0",
"react-loadingg": "^1.7.2",
"styled-components": "^5.0.1",
"styled-reset": "^4.1.0"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@storybook/addon-actions": "^6.0.0-beta.31",
"@storybook/addon-backgrounds": "^6.0.0-beta.31",
"@storybook/addon-controls": "^6.0.0-beta.31",
"@storybook/addon-docs": "^6.0.0-beta.31",
"@storybook/addon-knobs": "^6.0.0-beta.31",
"@storybook/addon-storysource": "^6.0.0-beta.31",
"@storybook/addon-viewport": "^6.0.0-beta.31",
"@storybook/react": "^6.0.0-beta.31",
"@storybook/theming": "^6.0.0-beta.31",
"@types/node": "^14.0.5",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"chromatic": "^4.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"fork-ts-checker-webpack-plugin": "^4.1.5",
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-is": "^16.13.1",
"rollup": "^2.20.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.1",
"surge": "^0.21.3",
"ts-loader": "^7.0.5",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --ext .js,.ts,.tsx --fix"
]
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"react/self-closing-comp": "error",
"no-var": "error"
},
"parserOptions": {
"sourceType": "module"
}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}