-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "anyask-browser",
"version": "1.0.0",
"description": "plugin api which need browser",
"scripts": {
"watch": "tsc --watch --preserveWatchOutput --pretty",
"dev": "cross-env NODE_ENV=development nodemon",
"format": "prettier --write \"src/**/*.ts\"",
"build": "rimraf dist && tsc",
"start": "node dist/index.js"
},
"author": "Morty Lu <[email protected]>",
"license": "MIT",
"dependencies": {
"@fastify-resty/core": "^0.3.0",
"@fastify-resty/typeorm": "^0.3.0",
"@fastify/postgres": "^5.2.0",
"@fastify/websocket": "^8.0.0",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"fastify": "^4.17.0",
"pg": "^8.10.0",
"playwright": "^1.33.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"@types/node": "latest",
"@types/ws": "^8.5.4",
"cross-env": "^7.0.3",
"fastify-tsconfig": "^1.0.1",
"nodemon": "^2.0.22",
"playwright-start": "^1.1.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
}
}