-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.25 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@examples-hub/react-monorepo-starter-ts",
"version": "1.1.1111",
"private": true,
"description": "quickstart monorepo example for react projects and vanillajs projects",
"keywords": [
"template",
"quickstart"
],
"homepage": "https://github.com/examples-hub/react-monorepo-starter-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/examples-hub/react-monorepo-starter-ts.git"
},
"license": "MIT",
"author": "jinyaoo <[email protected]>",
"workspaces": [
"packages/*",
"package-a"
],
"scripts": {
"clean": "rimraf \"packages/**/dist\"",
"dev": "",
"format": "prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"format:check": "npm run formatter -- --check",
"help": "echo 'exec npm start to view the demo'",
"lint": "npm run formatter:check",
"lint:js": "",
"lint:style": "",
"prepare": "",
"publish": "",
"start": "cd packages/sample-vanilla-app-ts && npm start",
"syncpack-fix": "syncpack fix-mismatches",
"syncpack-ls": "syncpack list-mismatches",
"test": "jest --config=jest.monorepo.js",
"test:coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run formatter"
}
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
],
"dependencies": {
"classnames": "^2.3.2",
"cross-fetch": "^3.1.5",
"debug": "^4.3.4",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.18.0",
"@babel/core": "^7.18.0",
"@babel/plugin-proposal-class-properties": "^7.18.0",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.18.0",
"@babel/preset-typescript": "^7.18.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.27.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"eslint": "8.30.0",
"eslint-config-alloy": "^4.7.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.8.1",
"react-refresh": "^0.14.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"source-map-loader": "^4.0.1",
"source-map-support": "^0.5.21",
"style-loader": "^3.3.1",
"syncpack": "^8.4.11",
"terser-webpack-plugin": "^5.3.6",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"yargs": "^17.6.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}