-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.27 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
{
"name": "workshop-node-validation-essentials",
"type": "module",
"scripts": {
"postinstall": "npm install --prefix 03-generated-schema-types/ && npm install --prefix 04-validation-error-responses/",
"server:part-01": "nodemon shared/server.js -- $PWD/01-why-validation-is-essential/routes.js",
"server:part-02": "nodemon shared/server.js -- $PWD/02-creating-flexible-validation-rules/routes.js",
"server:part-04": "nodemon shared/server.js -- $PWD/04-validation-error-responses/routes.js",
"test": "tap --reporter spec --no-coverage --jobs 1 --timeout 10 --",
"test:all": "tap */test/*.test.js --reporter spec --no-coverage"
},
"devDependencies": {
"nodemon": "^2.0.15",
"simple-get": "^4.0.0",
"tap": "^15.1.5",
"tsm": "^2.2.1"
},
"dependencies": {
"@sinclair/typebox": "^0.23.0",
"ajv": "^8.8.2",
"fluent-json-schema": "^3.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonplend/workshop-node-validation-essentials.git"
},
"author": "Simon Plenderleith <simon@simonplend.co.uk> (https://simonplend.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonplend/workshop-node-validation-essentials/issues"
},
"homepage": "https://nodevalidationessentials.com"
}