-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.83 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "cot-perspective",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "Hadrian de Oliveira",
"repository": "https://github.com/hd-o/cotperspective.git",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsx src/build.ts",
"dev": "concurrently npm:dev:build npm:start",
"dev:build": "npm run build -- --watch",
"e2e": "playwright test --ui-host=0.0.0.0",
"git:commit-msg": "commitlint --edit",
"git:pre-push": "concurrently npm:lint npm:test",
"lint": "concurrently npm:lint:types npm:lint:code",
"lint:code": "eslint ${CHANGED_FILES:-.}",
"lint:types": "tsc --noEmit -p ./tsconfig.json",
"start": "serve build",
"test": "playwright test"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@antfu/eslint-config": "^3.12.1",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/clean-css": "^4.2.11",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/request": "^2.48.12",
"@types/unzipper": "^0.10.10",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"clean-css": "^5.3.3",
"concurrently": "^9.1.1",
"csv-parse": "^5.6.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"lodash": "^4.17.21",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"serve": "^14.2.4",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@playwright/test": "^1.49.1"
}
}