-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.09 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.09 KB
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
{
"name": "tuft-examples",
"version": "1.0.0",
"description": "A suite of simple Tuft application examples.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/tuftjs/examples.git"
},
"author": "Stuart Kennedy",
"license": "MIT",
"bugs": {
"url": "https://github.com/tuftjs/examples/issues"
},
"homepage": "https://github.com/tuftjs/examples#readme",
"scripts": {
"body-parser": "node -r dotenv/config ./body-parser.js",
"cookie-parser": "node -r dotenv/config ./cookie-parser.js",
"file": "node -r dotenv/config ./file.js",
"hello-world": "node -r dotenv/config ./hello-world.js",
"search-params": "node -r dotenv/config ./search-params.js",
"session": "node -r dotenv/config ./session.js",
"static-files": "node -r dotenv/config ./static-files.js",
"status-code": "node -r dotenv/config ./status-code.js",
"stream-responder": "node -r dotenv/config ./stream-responder.js",
"wildcard-routes": "node -r dotenv/config ./wildcard-routes.js"
},
"dependencies": {
"dotenv": "^8.2.0",
"tuft": "^2.4.1"
}
}