-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.63 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.63 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
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
{
"name": "fsl-challenge",
"main": "src/index.ts",
"type": "module",
"version": "0.0.0",
"private": true,
"engines": {
"node": "14.16.0",
"npm": "6.14.11"
},
"scripts": {
"preinstall": "npx check-engine",
"ts-node": "cross-env NODE_OPTIONS=\"--loader=ts-node/esm --no-warnings --experimental-specifier-resolution=node\" node",
"start": "npm run ts-node src/index.ts",
"predevelop": "npm run db:migrate && npm run db:seed",
"dev": "nodemon",
"lint": "eslint .",
"prettier": "./node_modules/.bin/prettier --write \"{src,knex}/**/*.ts\"",
"pretest": "cross-env NODE_ENV=test npm run db:rollback:all && cross-env NODE_ENV=test npm run db:migrate",
"pretest:CI": "cross-env NODE_ENV=test npm run db:migrate",
"test": "jest --env=node",
"test:CI": "cross-env NODE_OPTIONS=\"--max-old-space-size=3072\" jest --maxWorkers=2",
"watch": "jest --watchAll",
"knex": "npm run ts-node node_modules/knex/bin/cli.js",
"db:migrate": "npm run knex -- migrate:latest",
"db:migrate:make": "npm run knex -- migrate:make",
"db:rollback": "npm run knex -- migrate:rollback",
"db:rollback:all": "npm run knex -- migrate:rollback --all",
"db:reset": "npm run db:rollback:all && npm run db:setup",
"db:seed": "npm run knex -- seed:run",
"db:setup": "npm run db:migrate && npm run db:seed"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^4.1.0",
"faker": "^5.5.3",
"http-status-codes": "^1.4.0",
"knex": "^0.95.7",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"objection": "^3.0.0-alpha.4",
"rosie": "^2.0.1",
"sqlite3": "^5.0.0",
"url-join": "^4.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/faker": "^5.5.7",
"@types/jest": "^26.0.24",
"@types/knex": "^0.16.1",
"@types/lodash": "^4.14.171",
"@types/rosie": "0.0.39",
"@types/supertest": "^2.0.11",
"@types/url-join": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"cross-env": "^7.0.3",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cup": "^2.0.3",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^27.0.6",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}