forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.63 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
{
"name": "vite-app",
"version": "0.4.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"clean": "rimraf --no-glob ./dist ./tsconfig.tsbuildinfo ./node_modules/.vite",
"serve": "vite preview",
"test": "yarn test-unit",
"test-unit": "echo 'No test present yet'",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx --fix"
},
"dependencies": {
"@emotion/react": "11.8.1",
"@emotion/styled": "11.8.1",
"@your-org/core-lib": "workspace:^",
"@your-org/ui-lib": "workspace:^",
"react": "18.0.0-rc.0-next-fa816be7f-20220128",
"react-dom": "18.0.0-rc.0-next-fa816be7f-20220128",
"wouter": "2.8.0-alpha.2"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@emotion/babel-plugin": "11.7.2",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@vitejs/plugin-react": "1.2.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.4.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.2",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-regexp": "1.5.1",
"eslint-plugin-sonarjs": "0.12.0",
"eslint-plugin-testing-library": "5.0.5",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"typescript": "4.5.5",
"vite": "2.8.4",
"vite-tsconfig-paths": "3.4.1"
}
}