-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 KB
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
{
"name": "myproject",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=14"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"lint": "npm run lint-ts && npm run lint-scss",
"lint-ts": "eslint .",
"lint-ts-fix": "eslint . --fix",
"lint-scss": "stylelint \"**/*.scss\"",
"lint-scss-fix": "stylelint \"**/*.scss\" --fix",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"ci": "npm run lint && npm run test-coverage"
}
}