forked from belgattitude/nextjs-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.4 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
{
"name": "@your-org/core-lib",
"version": "3.15.1",
"license": "MIT",
"private": true,
"homepage": "https://github.com/belgattitude/nextjs-monorepo-example",
"repository": {
"type": "git",
"url": "https://github.com/belgattitude/nextjs-monorepo-example",
"directory": "packages/core-lib"
},
"author": {
"name": "Vanvelthem Sébastien",
"url": "https://github.com/belgattitude"
},
"sideEffects": false,
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf --no-glob ./dist && cross-env NODE_ENV=production microbundle --tsconfig ./tsconfig.build.json --jsx React.createElement --jsxFragment React.Fragment -f cjs,es --no-compress",
"build-react17jsx": "microbundle --tsconfig ./tsconfig.build.json --jsx jsx --jsxImportSource react --globals react/jsx-runtime=jsx --compress",
"dev": "microbundle watch",
"clean": "rimraf --no-glob ./dist ./coverage ./tsconfig.tsbuildinfo",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --cache --cache-location ../../.cache/eslint/core-lib.eslintcache",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"test": "run-s test-unit",
"test-unit": "vitest run",
"test-unit-watch": "vitest watch --ui",
"test-unit-jest": "jest --config jest.config.js",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --fix"
},
"dependencies": {
"@belgattitude/http-exception": "^1.3.4",
"@your-org/ts-utils": "workspace:^",
"dequal": "^2.0.3"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "29.1.2",
"@types/node": "18.8.4",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@vitejs/plugin-react": "2.1.0",
"@vitest/coverage-istanbul": "0.24.1",
"@vitest/ui": "0.24.1",
"@your-org/eslint-config-bases": "workspace:^",
"cross-env": "7.0.3",
"eslint": "8.25.0",
"jest": "29.1.2",
"jest-environment-jsdom": "29.1.2",
"microbundle": "0.15.1",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "3.0.2",
"ts-jest": "29.0.3",
"typescript": "4.8.4",
"vite": "3.1.7",
"vite-tsconfig-paths": "3.5.1",
"vitest": "0.24.1"
}
}