-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@vatominc/spark-engine",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node -r module-alias/register build/index.js",
"start:watch": "nodemon -r module-alias/register build/index.js",
"build": "npx tsc",
"build:watch": "npx tsc -w",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"{src,scripts,migrations}/**/*.{js,ts}\"",
"lint": "eslint \"{src,scripts,migrations}/**/*.{js,jsx,ts,tsx}\"",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"test": "jest",
"mig": "node scripts/mig.mjs"
},
"dependencies": {
"@varius.io/framework": "^13.6.41",
"axios": "^0.22.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"jose": "2.0.2",
"module-alias": "^2.2.2",
"node-cache": "^4.2.0",
"umzug": "3.0.0-beta.10"
},
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.2",
"@types/node": "^18.15.11",
"@types/node-cache": "4.1.3",
"@types/pg": "^7.4.14",
"nodemon": "^2.0.2",
"prettier": "^1.18.2",
"ts-node": "^10.9.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^5.0.4",
"umzug": "^3.2.1"
},
"_moduleAliases": {
"#src": "build"
}
}