-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "algorithm",
"version": "1.0.0",
"description": "Learning algorithm",
"main": "main.ts",
"scripts": {
"ts": "tsc -w",
"build": "tsc -w",
"test": "jest --no-cache --config jest.config.json",
"webpack": "webpack --config webpack.config.js --watch-aggregate-timeout 1000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrTreasure/typescript-blank-project.git"
},
"keywords": [
"typescript"
],
"author": "MrTreasure",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrTreasure/typescript-blank-project/issues"
},
"homepage": "https://github.com/MrTreasure/typescript-blank-project#readme",
"devDependencies": {
"@types/fs-extra": "^5.0.1",
"@types/jest": "^22.1.1",
"@types/lru-cache": "^4.1.0",
"@types/reflect-metadata": "^0.1.0",
"jest": "^22.1.4",
"ts-jest": "^22.0.2",
"ts-loader": "^4.3.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.6.2",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.4"
},
"dependencies": {
"amqplib": "^0.5.2",
"axios": "^0.18.0",
"chalk": "^2.3.2",
"fs-extra": "^5.0.0",
"koa": "^2.5.2",
"mobx": "^5.0.3",
"moment": "^2.22.2",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.2",
"snabbdom": "^0.7.1",
"typeorm": "^0.2.7"
}
}