-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "Alebrije-back",
"version": "1.0.0",
"main": "./build/index.ts",
"repository": "[email protected]:benjyup/Alebrije-back.git",
"author": "Vincent Mesquita <[email protected]>",
"license": "MIT",
"dependencies": {
"@sendgrid/client": "^6.4.0",
"@sendgrid/mail": "^6.4.0",
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.27",
"@types/chai": "^4.2.3",
"@types/date-fns": "^2.6.0",
"@types/faker": "^4.1.6",
"@types/graphql": "^14.5.0",
"@types/lodash": "^4.14.141",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
"@types/node-cache": "^4.1.3",
"@types/sinon": "^7.5.0",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.3",
"aigle": "^1.14.1",
"apollo-server": "^2.9.3",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"class-validator": "^0.10.0",
"date-fns": "^2.4.1",
"express": "^4.17.1",
"faker": "^4.1.0",
"graphql": "^14.5.5",
"jsonwebtoken": "^8.5.1",
"koa": "^2.8.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.15",
"mocha": "^6.2.1",
"node-cache": "^5.0.0",
"pg": "^7.3.0",
"pg-connection-string": "^2.1.0",
"pg-hstore": "^2.3.3",
"reflect-metadata": "^0.1.10",
"sinon": "^7.5.0",
"ts-node": "^8.4.1",
"typeorm": "0.2.18",
"typescript": "3.3.3333",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"scripts": {
"start": "yarn run migration.up && yarn run seed.revert && yarn run seed.run && ts-node src/app.ts",
"dev": "npx nodemon ts-node-dev --respawn --transpileOnly ./src/app.ts",
"prod": "yarn run tsc && node ./build/app.js",
"test": "NODE_ENV=test npm run test.migration.up && ts-mocha --require node_modules/tsconfig-paths/register tests/**/*.spec.ts -r tests/init.ts",
"lint": "eslint src/** tests/** --ext .ts",
"lint.fix": "yarn run lint -- --fix",
"migration.create": "npx ts-node ./node_modules/typeorm/cli.js migration:create -n",
"migration.up": "npx ts-node ./node_modules/typeorm/cli.js migration:run",
"migration.down": "npx ts-node ./node_modules/typeorm/cli.js migration:revert",
"seed.create": "npx ts-node ./node_modules/typeorm/cli.js migration:create -c seed -n",
"seed.run": "npx ts-node ./node_modules/typeorm/cli.js migration:run -c seed",
"seed.revert": "npx ts-node ./node_modules/typeorm/cli.js migration:revert -c seed",
"test.migration.up": "yarn run migration.up -- -c test",
"test.migration.down": "yarn run migration.down -- -c test"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/jsonwebtoken": "^8.3.3",
"@types/koa": "^2.0.49",
"@types/koa-router": "^7.0.42",
"@types/node": "^8.0.29",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"eslint-plugin-react-hooks": "^1.7.0",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"ts-mocha": "^6.0.0",
"ts-node-dev": "^1.0.0-pre.42",
"tsconfig-paths": "^3.9.0"
}
}