-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 960 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 960 Bytes
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
{
"name": "fweather",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./bin/www",
"dev": "nodemon -L ./bin/www",
"debug": "DEBUG=weather:* && nodemon -L ./bin/www",
"eslint": "eslint ."
},
"devDependencies": {
"debug": "^4.3.2",
"nodemon": "^2.0.12",
"prettier": "^2.0.4"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": 4000
}
},
"dependencies": {
"chalk": "^4.1.0",
"dotenv": "^10.0.0",
"fastify": "^3.19.2",
"fastify-cookie": "^5.3.1",
"fastify-formbody": "^5.1.0",
"fastify-pug": "^2.0.0",
"fastify-simple-form": "^2.0.0",
"fastify-static": "^4.4.1",
"get-stream": "^6.0.1",
"pug": "^3.0.2",
"superagent": "^6.0.0",
"undici": "^4.2.2"
}
}