-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "@noirgallery/restless",
"description": "TODO",
"version": "0.4.0",
"main": "lib/server.js",
"files": [
"lib"
],
"scripts": {
"test:unit": "NODE_ENV=testing mocha {src,tests}/{**,**/**}/*.spec.ts --reporter list --require ts-node/register --require tsconfig-paths/register --recursive --exit --bail --timeout 120000",
"test": "npm run test:unit",
"prepublish": "npm run build && npm run test",
"build": "tsc --project tsconfig.json && rm -rf lib/spec && find lib -type f -name '*.spec.js' -exec rm {} +"
},
"peerDependencies": {
"fp-ts": "^2.8.2",
"io-ts": "^2.2.10",
"rxjs": "^6.6.3"
},
"dependencies": {
"@babel/parser": "^7.13.15",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"loader-utils": "^2.0.0"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/loader-utils": "^2.0.1",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.25",
"@types/supertest": "^2.0.10",
"chai": "^4.2.0",
"fp-ts": "^2.8.2",
"io-ts": "^2.2.10",
"mocha": "^8.0.1",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
}
}