-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"name": "fienmee",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start:server": "pnpm --filter ./apps/server start",
"start:dev": "pm2 start ecosystem.dev.config.json",
"delete:dev": "pm2 delete ecosystem.dev.config.json",
"build": "pnpm -r build",
"build:server": "pnpm --filter ./apps/server build",
"build:web": "pnpm --filter ./apps/web build",
"build:types": "pnpm --filter ./packages/types build",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/runtime": "^7.26.10",
"@swc/cli": "^0.5.0",
"@swc/core": "^1.9.1",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/newrelic": "^9.14.8",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"dependencies": {
"newrelic": "^13.0.0",
"tslib": "^2.8.1"
}
}