-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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": "sensemaking-tools",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest",
"test-silent": "./node_modules/.bin/jest --silent",
"test-watch": "nodemon --watch src --ext 'ts,json' -x 'npm run test-silent --onlyChanged'",
"prepare": "husky && husky install",
"lint": "eslint . --fix --max-warnings=0",
"format": "prettier . --write"
},
"repository": {
"type": "git",
"url": "sso://participation-project-internal/participation-project"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/papaparse": "^5.3.15",
"csv-parse": "^5.6.0",
"csv-writer": "^1.6.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^11.12.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"marked": "^15.0.3",
"nodemon": "^3.1.4",
"papaparse": "^5.4.1",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"@babel/preset-env": "^7.25.4",
"@google-cloud/vertexai": "^1.9.0",
"@sinclair/typebox": "^0.34.3",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"babel-jest": "^29.7.0",
"colors": "^1.4.0",
"diff": "^7.0.0",
"ts-node": "^10.9.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,jsx,ts,tsx}": "prettier --write"
}
}