This repository has been archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 1.96 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "transfer-server-unit-tests",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"description": "Validates anchors implementation of SEP24",
"repository": {
"url": "https://github.com/stellar/transfer-server-validator"
},
"scripts": {
"postinstall": "cd client && npm install && cd ..",
"test": "jest --roots=cases-$PROJECT -i --verbose --json --outputFile=results.json --forceExit --testPathIgnorePatterns='\\b(\\w*optional\\w*)\\b'",
"test:run-optional": "jest --roots=cases-$PROJECT -i --verbose --json --outputFile=results.json --detectOpenHandles",
"server:dev": "PORT=3001 nodemon server/api.js",
"start:dev": "concurrently \"cd client && REACT_APP_API_HOST=http://localhost:3001 npm start\" \"PORT=3001 npm run server:dev\"",
"start": "node run.js",
"heroku-postbuild": "cd client && yarn && yarn run build"
},
"engines": {
"node": "^14"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@stellar/prettier-config": "^1.0.1",
"babel-jest": "^25.5.1",
"bufferutil": "^4.0.2",
"canvas": "^2.5.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jest": "^24.9.0",
"jest-expect-message": "^1.0.2",
"jest-json-schema": "^2.1.0",
"jest-junit": "^10.0.0",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.6",
"stellar-sdk": "^5.0.4",
"stmux": "^1.8.0",
"toml": "^3.0.0",
"utf-8-validate": "^5.0.3"
},
"jest": {
"roots": [
"cases-SEP31",
"cases-SEP24",
"cases-SEP6"
],
"reporters": [
"default",
"jest-junit"
],
"setupFilesAfterEnv": [
"./setup.js",
"jest-expect-message"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": "@stellar/prettier-config",
"devDependencies": {
"husky": "^4.3.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.2"
}
}