-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.96 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
{
"name": "tempestclient",
"version": "0.1.0",
"engines": {
"node": "18.x"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@tanstack/react-query": "^4.29.19",
"array-move": "4.0.0",
"deepmerge": "4.3.1",
"form-urlencoded": "6.1.0",
"nanoid": "4.0.2",
"path-to-regexp": "6.2.1",
"query-string": "8.1.0",
"react": "18.2.0",
"react-beautiful-dnd": "13.1.1",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-i18next": "13.0.2",
"react-window": "^1.8.9",
"ress": "5.0.2",
"styled-components": "6.0.4"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "cross-env NODE_ENV=development vite",
"story": "sb dev -p 9009",
"typecheck": "tsc --project tsconfig.json #",
"typecheck:watch": "tsc --noEmit --watch",
"test": "jest --passWithNoTests ",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"lint:ts": "eslint ./src/**/*.ts ./src/**/*.tsx --cache",
"lint:fix:ts": "yarn lint:ts --fix",
"lint:js": "eslint ./*.js --cache",
"lint:fix:js": "yarn lint:js --fix",
"lint:json": "prettier \"*.json\"",
"lint:fix:json": "yarn lint:json --fix",
"lint:style": "stylelint \"./src/**/*.tsx\" --syntax css-in-js",
"lint:fix:style": "yarn lint:style --fix",
"lint": "run-p -l -n -c --aggregate-output lint:*",
"lint:all-fix": "run-p -l -n -c --aggregate-output lint:fix:*"
},
"devDependencies": {
"@storybook/cli": "^7.0.27",
"@storybook/react": "^7.0.27",
"@storybook/react-vite": "^7.0.27",
"@testing-library/dom": "9.3.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.4.3",
"@types/form-urlencoded": "4.4.0",
"@types/jest": "29.5.3",
"@types/react": "18.2.14",
"@types/react-beautiful-dnd": "13.1.4",
"@types/react-dom": "18.2.7",
"@types/react-window": "^1.8.5",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"cross-env": "7.0.3",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.2",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"jest": "29.6.1",
"npm-run-all": "4.1.5",
"prettier": "3.0.0",
"stylelint": "15.10.1",
"stylelint-config-recess-order": "4.3.0",
"stylelint-config-recommended": "13.0.0",
"stylelint-config-styled-components": "0.1.1",
"ts-jest": "29.1.1",
"typescript": "5.1.6",
"vite": "^4.4.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}