-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "fascia",
"version": "0.0.1-alpha-7",
"description": "A pattern I find really useful in web apps is to separate out authentication, authorization, and the action. In node/express, these end up as middlewares:",
"main": "dist/index.js",
"umd:main": "dist/fascia.umd.production.js",
"module": "dist/fascia.es.production.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.ts",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"author": "",
"license": "MIT",
"peerDependencies": {
"express": "*"
},
"dependencies": {
"empty-promise": "^1.2.0",
"fp-ts": "^2.4.1",
"io-ts": "^2.0.5",
"io-ts-promise": "^2.0.2",
"knex": "^0.20.8",
"node-mocks-http": "^1.8.1"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.8",
"@types/passport": "^1.0.2",
"@types/slonik": "^21.4.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rollup": "^1.29.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5"
}
}