-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 874 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 874 Bytes
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
{
"name": "server",
"version": "0.1.0",
"description": "A server for running Stellar anchor tests",
"author": "Stellar Development Foundation <hello@stellar.org>",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"./lib"
],
"license": "Apache-2.0",
"scripts": {
"build": "tsc -p ./src/tsconfig.json",
"start": "node ./lib/index.js"
},
"prettier": "@stellar/prettier-config",
"devDependencies": {
"@stellar/prettier-config": "^1.0.1",
"@stellar/tsconfig": "^1.0.2",
"@types/express": "^4.17.11",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/node": "^20.11.0",
"express": "^4.17.1",
"socket.io": "^4.1.2",
"tslib": "^2.2.0",
"winston": "^3.3.3"
},
"peerDependencies": {
"@stellar/anchor-tests": "0.6.21"
}
}