-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "@ll/diplomka",
"version": "0.1.0",
"description": "",
"main": "src/index.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc && npm run build:copy:prisma",
"build:copy:prisma": "cp -r src/Packages/prisma-orm/Databases/**/generated dist/Packages/prisma-orm/Databases/**/",
"start": "NODE_PATH=dist node dist/index.js",
"start-lr": "tsc-watch --onSuccess \"npm run start\"",
"test": "./node_modules/.bin/mocha --require ts-node/register test/*.ts",
"cs:eslint:check": "eslint --ignore-path .gitignore '**/*.ts' -f codeframe",
"cs:eslint:fix": "npm run cs:eslint:check -- --fix",
"lint": "npm run cs:eslint:check",
"prepare": "husky install",
"cs:prettier:check": "prettier --ignore-path .gitignore --check '**/*.{ts,js,json,md}'",
"cs:prettier:fix": "npm run cs:prettier:check -- --write '**/*.{ts,js,json,md}'"
},
"author": "Ladislav Louka <[email protected]>",
"contributors": [
"Ladislav Louka <[email protected]>"
],
"workspaces": [
"src/Packages/*"
],
"license": "MIT",
"devDependencies": {
"@ackee/styleguide-backend-config": "^0.3.13",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"husky": "^7.0.0",
"lint-staged": "^12.3.7",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"chalk": "^4.1.2",
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"pg": "^8.9.0",
"sass": "^1.58.3"
}
}