-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.32 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
{
"name": "schematic",
"version": "0.5.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "NODE_ENV=production react-scripts build",
"build:ci": "CI=yes yarn test && yarn build",
"build:release": "yarn build:ci && mkdir -p artifacts && cd build && tar -zcf \"../artifacts/release_${npm_package_version}.tar.gz\" .",
"build:pages": "PUBLIC_URL='/schematic/' yarn build:ci",
"publish:pages": "git checkout main && yarn build:pages && git checkout gh-pages && git rm -r static assets *.html *.png *.txt *.json && mv build/* . && git add . && git commit -m \"${npm_package_version}\" && git push && git checkout main",
"deduplicate": "npx yarn-deduplicate",
"test": "yarn test:types && yarn lint",
"test:types": "tsc --noEmit --project tsconfig.json",
"lint": "yarn eslint . --cache --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@stitches/react": "^1.2.1",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"classnames": "^2.3.1",
"immer": "^9.0.6",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"shallowequal": "^1.1.0",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/lodash-es": "^4.17.5",
"@types/shallowequal": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.4.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{js,css,md}": "prettier --write"
}
}