-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.06 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
{
"dependencies": {
"@tensorflow/tfjs": "^0.14.1",
"@tensorflow/tfjs-node": "^0.2.1",
"@types/jest": "^23.3.10",
"@types/mathjs": "^4.4.4",
"@types/node": "^10.12.12",
"@types/numjs": "^0.14.4",
"@types/uuid": "^3.4.4",
"jest": "^23.6.0",
"mathjs": "^7.5.1",
"mecab-async": "^0.1.2",
"numjs": "^0.16.0",
"ts-jest": "^23.10.5",
"uuid": "^3.3.2"
},
"name": "app",
"version": "1.0.0",
"main": "app.js",
"devDependencies": {
"typescript": "^3.2.2"
},
"scripts": {
"build": "tsc --outDir ./build",
"watch": "tsc --watch",
"tsc": "tsc -p tsconfig.json",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.spec.json"
}
},
"testMatch": [
"**/?(*.)+(spec|test).ts?(x)"
]
}
}