-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "mmi-charts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"packageManager": "yarn@3.2.0",
"engines": {
"npm": ">=8.19.2 <9.0.0",
"node": ">=18.11.0 <19.0.0",
"yarn": ">=3.2.0 <4.0.0"
},
"dependencies": {
"canvas": "3.2.0",
"chart.js": "4.5.1",
"chartjs-plugin-datalabels": "2.2.0",
"express": "4.19.2",
"serve-favicon": "2.5.0"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/node": "22.5.4",
"@types/serve-favicon": "2.5.7",
"concurrently": "8.2.2",
"copyfiles": "2.4.1",
"dotenv": "17.2.3",
"nodemon": "3.1.4",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"scripts": {
"build": "yarn clean && npx tsc && yarn copy-files",
"clean": "rimraf ./build",
"copy-files": "copyfiles public/** build/",
"start": "node build/server.js",
"start:dev": "concurrently \"npx tsc --watch\" \"nodemon -q build/dist/server.js\"",
"start:watch": "nodemon -r dotenv/config src/server.ts",
"pretty-quick": "pretty-quick",
"lint": "eslint src/ --ext .jsx,.js,.ts,.tsx --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"check": "prettier --check \"./src/**/*.{js,jsx,ts,tsx,css,scss}\""
}
}