-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "tccpp-ngrams",
"author": "Jeremy Rifkin",
"license": "MIT",
"description": "",
"version": "1.0.0",
"main": "server/app.ts",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"dev": "nodemon -w server -x tsx server/app.ts",
"start": "NODE_ENV=production tsx server/app.ts",
"build": "vite build ui && tsc",
"format": "prettier . --write",
"format-check": "prettier . --check",
"format-files": "prettier . --write --ignore-unknown",
"lint": "eslint server ui",
"prepare": "husky"
},
"dependencies": {
"@observablehq/plot": "^0.6.15",
"@types/d3": "^7.4.3",
"@types/express": "^4.17.21",
"@types/node": "^20.14.12",
"chalk": "^5.3.0",
"d3": "^7.9.0",
"duckdb": "^1.1.1",
"express": "^4.19.2",
"moment": "^2.30.1",
"nodemon": "^3.1.4",
"sass": "^1.77.8",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite-express": "^0.19.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.1",
"vite": "^5.4.10"
}
}