-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.33 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
{
"name": "thinkt-web",
"version": "0.1.0",
"description": "THINKT API web application - project and session browser",
"type": "module",
"scripts": {
"dev": "THINKT_API_TOKEN=$(/Users/evan/wethinkt/go-thinkt/bin/thinkt server token 2>/dev/null) vite",
"build": "npm run lint && tsc && vite build",
"build:fast": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"ci:check": "npm run lint && npm run typecheck && npx vitest run --passWithNoTests && npx vite build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc --noEmit",
"i18n:extract": "lingui extract",
"i18n:compile": "lingui compile",
"i18n": "npm run i18n:extract && npm run i18n:compile"
},
"author": "Neomantra Corp",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"jsdom": "^27.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0",
"vite": "^6.0.0",
"vitest": "^2.1.0"
},
"dependencies": {
"@lingui/cli": "^5.9.1",
"@lingui/core": "^5.9.1",
"@lingui/message-utils": "^5.9.1",
"@lingui/vite-plugin": "^5.9.1",
"@wethinkt/ts-thinkt": "^0.1.20",
"marked": "^17.0.1"
}
}