-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "react-esbuild-boilerplate",
"version": "2.0.0",
"description": "An extremely fast react boilerplate",
"main": "lib/index.umd.js",
"module": "lib/index.esm.js",
"scripts": {
"start": "node ./scripts/esbuild.js",
"build": "npm run start -- --nodeEnv production",
"test": "jest --config ./jest.config.js --forceExit --detectOpenHandles",
"coverage": "npm run test -- --coverage",
"ci": "npm run e2e && npm run test && npm run build && npm run lint && npx tsc",
"e2e": "npx playwright test",
"lint": "npx oxlint@latest --fix",
"prepare": "husky && npx playwright install --with-deps",
"typedoc": "npx typedoc"
},
"repository": {
"type": "git",
"url": "git://github.com/nusr/react-esbuild-boilerplate.git"
},
"keywords": [],
"author": "Steve Xu <stevexugc@gmail.com>",
"license": "MIT",
"homepage": "https://nusr.github.io/react-esbuild-boilerplate",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"esbuild": "^0.21.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
}
}