-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.06 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.06 KB
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
{
"name": "runesapi",
"author": "Arbor Software Solutions, LLC",
"description": "API for getting data on and interacting with various runic systems",
"version": "0.1.0",
"engines": {
"node": "12.x.x"
},
"scripts": {
"up": "./scripts/up.sh",
"start": "npm run up && docker-compose up -d runesapi",
"down": "docker-compose down",
"build": "rm -rf .dist && tsc --outDir .build",
"test": "jest --selectProjects unit --passWithNoTests",
"pretest:integration": "./scripts/up.sh && docker-compose up -d runesapi && wait-on tcp:3002 && wait-on tcp:3000",
"test:integration": "jest --selectProjects integration --detectOpenHandles",
"posttest:integration": "npm run down",
"db:create:entity": "ts-node ./node_modules/.bin/typeorm entity:create -d src/db/entity",
"db:create:migration": "ts-node ./node_modules/.bin/typeorm migration:create -d src/db/migration",
"db:generate:migration": "ts-node ./node_modules/.bin/typeorm migration:generate -d src/db/migration",
"db:run:migration": "ts-node ./node_modules/.bin/typeorm migration:run",
"db:revert:migration": "ts-node ./node_modules/.bin/typeorm migration:revert",
"check": "tsc --noEmit && npm run check:prettier",
"check:prettier": "prettier \"{.,,{src,test,.vscode}/**/}*.@(ts|js|json|yml|yaml)\" --list-different",
"fix:prettier": "npm run check:prettier -- --write"
},
"dependencies": {
"ajv": "^7.2.1",
"lodash": "^4.17.21",
"pg": "^8.5.1",
"typeorm": "^0.2.31"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.72",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"aws-lambda": "^1.0.6",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"execa": "^5.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"sequelize-cli": "^6.2.0",
"serverless": "^2.28.7",
"serverless-offline": "^6.8.0",
"serverless-plugin-typescript": "^1.1.9",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"wait-on": "^5.2.1"
}
}