-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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": "breviter",
"version": "0.2.0",
"private": true,
"scripts": {
"init-dev": "next dev",
"init-build": "next build",
"init-start": "next start",
"export": "next export",
"dev": "([[ -e 'public/db.json' ]] || yarn compute) && yarn init-dev",
"build": "([[ -e 'public/db.json' ]] || yarn compute) && yarn init-build",
"start": "([[ -e 'public/db.json' ]] || yarn compute) && yarn init-start",
"cli": "ts-node --project tsconfig.bin.json src/cli.ts",
"compute": "yarn cli compute data -o public/db.json",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"bin": {
"breviter": "src/cli.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geolexica/breviter.git"
},
"bugs": {
"url": "https://github.com/geolexica/breviter/issues"
},
"homepage": "https://github.com/geolexica/breviter/#readme",
"dependencies": {
"@blueprintjs/core": "^3.54.0",
"@blueprintjs/popover2": "^0.14.0",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs": "^3.20.0",
"@tensorflow/tfjs-node": "^3.20.0",
"js-yaml": "^4.1.0",
"next": "12.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-node": "^10.9.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.1",
"@types/node": "^14.18.30",
"@types/react": "17.0.50",
"@types/yargs": "^17.0.13",
"gts": "^3.1.1",
"typescript": "4.8.3"
}
}