-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.02 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
{
"name": "nft-marketplace-be",
"version": "0.0.1",
"description": "",
"main": "./src/index.js",
"author": "",
"scripts": {
"build": "tsc",
"start": "node ./dist/index",
"build-start": "npm run build && npm run start",
"dev": "nodemon",
"lint": "eslint --color . --ext .ts --fix",
"test": "jest --verbose",
"test-watch": "jest --watch --verbose",
"preinstall": "which link-module-alias && link-module-alias clean || echo",
"postinstall": "mkdir -p dist && link-module-alias",
"prepare": "husky install",
"typeorm:cli": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_PROJECT=tsconfig.json node -r ts-node/register -r dotenv/config -r tsconfig-paths/register ./node_modules/typeorm/cli",
"gen-db-migrations": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_PROJECT=tsconfig.json node -r ts-node/register -r dotenv/config -r tsconfig-paths/register ./node_modules/typeorm/cli migration:generate",
"gen-gql-types": "graphql-codegen",
"prebuild": "npm run gen-gql-types",
"predev": "npm run gen-gql-types -- --watch &"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"_moduleAliases": {
"@src": "./dist"
},
"dependencies": {
"@graphql-tools/merge": "^6.2.10",
"@types/lodash": "^4.14.168",
"apollo-server": "^2.21.1",
"dotenv": "^8.2.0",
"graphql": "^15.5.0",
"graphql-iso-date": "^3.6.1",
"link-module-alias": "^1.2.0",
"lodash": "^4.17.21",
"pgtools": "^0.3.1",
"pino": "^6.11.2",
"tsconfig-paths": "^3.9.0",
"typeorm": "^0.2.31",
"uuid": "^8.3.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.3",
"@graphql-codegen/typescript": "^1.21.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.35",
"@types/pino": "^6.3.6",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"husky": "^5.1.3",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}