-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 970 Bytes
/
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
{
"name": "anthill-backend",
"version": "1.0.0",
"description": "",
"main": "App.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "npx nodemon",
"build": "rimraf ./build && tsc",
"start": "node build/App.js",
"postinstall": "tsc",
"fix": "prettier --write \"**/*.{js,json,md,sol,ts,tsx,yaml}\""
},
"build": "rimraf ./build && tsc",
"compilerOptions": {
"esModuleInterop": true
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"inspirational-quotes": "^2.0.1",
"prettier": "^3.3.2",
"uuid": "^9.0.0",
"web3": "^1.8.1"
},
"engines": {
"node": "19.1.0"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}