-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "@zthun/classroom",
"version": "0.0.0",
"description": "Documentation courses on how to do software development for beginners.",
"author": "Anthony Bonta",
"license": "GPL-3.0-or-later",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/zthun/classroom"
},
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf --glob 'reports' 'dist' 'coverage' '*.tgz' '*.log' 'packages/**/dist' 'packages/**/*.tgz' 'packages/**/*.log'",
"test": "vitest run --coverage",
"e2e": "cucumber-js",
"lint": "lint-janitor",
"build": "lerna run build",
"make": "yarn clean && yarn lint && yarn test && yarn build",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@types/jsdom": "^21.1.6",
"@types/jsdom-global": "^3.0.7",
"@types/node": "^20.11.22",
"@types/react": "^18.2.60",
"@types/react-dom": "^18.2.19",
"@types/supertest": "^6.0.2",
"@vitest/coverage-istanbul": "^1.3.1",
"@zthun/lint-janitor": "^15.1.2",
"@zthun/lint-janitor-config": "^15.1.2",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"jsdom-global": "^3.0.2",
"lerna": "^8.1.2",
"rimraf": "^5.0.5",
"rollup-plugin-visualizer": "^5.12.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-externalize-deps": "^0.8.0",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.1"
},
"resolutions": {
"rollup": "npm:@rollup/wasm-node@*"
},
"packageManager": "yarn@4.0.2"
}