-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.21 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.21 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "teamy-web",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"start:staging": "vite --mode staging",
"start:production": "vite --mode production",
"start:testing": "vite --mode testing",
"build:base": "vite build",
"build": "yarn build:base",
"build:development": "yarn build:base --mode development",
"build:testing": "yarn build:base --mode testing",
"build:staging": "yarn build:base --mode staging",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "playwright test",
"format": "yarn prettier --write ."
},
"dependencies": {
"@teamyapp/ext": "^0.0.16",
"classnames": "^2.3.1",
"graphql": "^16.8.1",
"js-cookie": "^3.0.1",
"lodash-es": "^4.17.21",
"marked": "^12.0.1",
"material-symbols": "^0.17.2",
"moment": "^2.29.1",
"prismjs": "^1.25.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.0",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"@playwright/test": "^1.43.0",
"@rollup/plugin-graphql": "^2.0.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/js-cookie": "^3.0.0",
"@types/lodash-es": "^4.17.5",
"@types/marked": "^6.0.0",
"@types/node": "^20.12.6",
"@types/prismjs": "^1.16.6",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react-swc": "^3.2.0",
"jsdom": "^24.0.0",
"prettier": "3.2.5",
"sass": "^1.74.1",
"typescript": "5.4.4",
"vite": "^5.2.8",
"vite-plugin-checker": "^0.6.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"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"
]
}
}