-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.9 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
56
57
58
{
"name": "ak2van",
"version": "0.0.1",
"description": "Ⓐ best project ever Ⓐ",
"main": "src/app/index.ts",
"repository": "https://github.com/affinityworks/ak2van.git",
"author": "@aguestuser, @vaughanj10",
"license": "AGPL-3.0",
"private": false,
"engines": {
"node": "10.4.0"
},
"scripts": {
"test": "find ./test -name '*.spec.ts' -not -path './test/functional/*' | NODE_ENV=$NODE_ENV xargs mocha -R spec -r ts-node/register",
"test-e2e": "find ./test/functional -name '*.spec.ts' | NODE_ENV=$NODE_ENV xargs mocha -R spec -r ts-node/register",
"test-all": "yarn test && yarn test-e2e",
"migrate": "npx sequelize db:migrate --env=$NODE_ENV",
"build": "npx tsc",
"postinstall": "NODE_ENV=$NODE_ENV yarn migrate",
"start": "NODE_ENV=$NODE_ENV npx ts-node src/index.ts",
"startDev": "npx tsc && NODE_ENV=development node build/src/index.js"
},
"dependencies": {
"@types/async": "^2.0.49",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.109",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/nock": "^9.1.3",
"@types/node": "^10.3.1",
"@types/pg": "^7.4.9",
"@types/sequelize": "^4.27.22",
"@types/sinon-chai": "^2.7.32",
"async": "^2.6.1",
"axios": "^0.18.0",
"bottleneck": "^2.8.0",
"global": "^4.3.2",
"lodash": "^4.17.10",
"mysql": "^2.14.1",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"pg-native": "^3.0.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.2.1",
"rxjs-compat": "^6.2.1",
"sequelize": "^4.37.10",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nock": "^9.3.2",
"sequelize-cli": "^4.0.0",
"sinon-chai": "^3.1.0",
"ts-node": "^6.1.0",
"ts-sinon": "^1.0.12",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^2.6.2"
}
}