-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "r3",
"version": "1.0.0",
"description": "",
"private": true,
"engines": {
"node": "v18.19.0",
"npm": "10.2.3"
},
"scripts": {
"dev:frontend": "npm run dev --workspace=frontend",
"dev:api": "npm run dev --workspace=api",
"build:frontend": "npm run build --workspace=frontend",
"build:api": "npm run build --workspace=api",
"serve:frontend": "npm run serve --workspace=frontend",
"serve:api": "npm run serve --workspace=api",
"build": "npm run build:frontend && npm run build:api"
},
"workspaces": [
"packages/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"d3": "^7.9.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/node": "^20.10.4",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-plugin-prettier": "^5.1.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}