-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "team-metrics-dashaboard",
"version": "0.1.0",
"description": "The one dashboard for a data-centric approach to measuring team progress and process improvements.",
"main": "dist/index.js",
"engines": {
"node": "18"
},
"scripts": {
"clean": "rm -rf dist/",
"build": "npm run clean && tsc -p ./tsconfig.build.json && tsc-alias",
"test": "jest --verbose",
"start": "node dist/index.js",
"dev": "nodemon --watch \"src/**\" --ext \"ts\" --ignore \"src/**/*.test.ts\" --exec \"ts-node -r tsconfig-paths/register --files src/index.ts\"",
"postinstall": "ts-patch install",
"css-build": "node-sass --omit-source-map-url src/styles.sass public/styles.css",
"css-watch": "npm run css-build -- --watch"
},
"lint-staged": {
"*": "prettier --write",
"*.ts": "eslint --fix"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"resetMocks": true,
"moduleNameMapper": {
"^@app/(.*)$": "<rootDir>/src/$1"
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"bulma": "^0.9.4",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"form-auto-content": "^3.1.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^14.0.1",
"node-html-parser": "^6.1.10",
"node-sass": "^9.0.0",
"nodemon": "^3.0.1",
"pino-pretty": "^10.0.0",
"prettier": "^3.0.3",
"testcontainers": "^10.2.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^7.7.0",
"@fastify/static": "^6.11.2",
"@fastify/view": "^8.1.0",
"csv-parser": "^3.0.0",
"csvtojson": "^2.0.10",
"date-fns": "^2.30.0",
"ejs": "^3.1.9",
"env-var": "^7.3.1",
"fastify": "^4.18.0",
"jira.js": "^2.19.1",
"lodash": "^4.17.21",
"percentile": "^1.6.0",
"purify-ts": "^2.0.1",
"randomstring": "^1.3.0",
"ts-patch": "^3.0.2",
"typia": "^5.0.4",
"util": "^0.12.5"
}
}