-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
87 lines (87 loc) · 2.88 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": "templates-react",
"homepage": "http://albertcito.github.io/templates-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@testing-library/jest-dom": "^5.11.4",
"@types/react-router-dom": "^5.1.5",
"antd": "^4.6.0",
"axios": "^0.20.0",
"classnames": "^2.2.6",
"intl-messageformat-parser": "^6.0.6",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-intl": "^5.8.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"typed-graphql-class": "^1.0.4",
"typescript": "^4.0.2"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "concurrently \"npm:ts:css -- -w\" \"react-scripts start\"",
"test": "react-scripts test --env=jsdom-fourteen",
"test-ci": "concurrently \"npm:ts:css\" \"react-scripts test\"",
"test:ci": "CI=true concurrently \"npm:ts:css\" \"react-scripts test\"",
"test:watch": "concurrently \"npm:ts:css -- -w\" \"react-scripts test\"",
"ts:css": "tsm src/**/*.module.scss -s -c -p",
"lint:ts": "tsc && yarn lint:eslint",
"lint:eslint": "eslint --ext=jsx,ts,tsx 'src/**/*.{ts,tsx}'",
"lint:eslint-fix": "eslint --ext=jsx,ts,tsx 'src/**/*.{ts,tsx}' --fix",
"lint:css": "stylelint --syntax scss \"src/**/*.scss\"",
"lint:css-fix": "stylelint \"src/**/*.scss\" --fix",
"lint": "yarn run lint:ts && yarn run lint:css"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/dom": "^7.24.1",
"@testing-library/react": "^11.0.2",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/node-sass": "^4.11.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^4.0.1",
"concurrently": "^5.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-unicorn": "^15.0.1",
"gh-pages": "^3.1.0",
"react-test-renderer": "^16.12.0",
"serve": "^11.3.0",
"stylelint": "^13.0.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-standard": "^19.0.0",
"typed-scss-modules": "^1.1.0"
}
}