-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.19 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.19 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
{
"name": "nodes",
"version": "1.0.34",
"description": "Procedural Web Framework",
"type": "module",
"scripts": {
"lint": "npx eslint",
"docs": "npx jsdoc -c jsdoc.conf.json",
"example:start": "node example/main.js",
"example:restart": "node example/restart.js",
"example:local:start": "ENV=local npm run example:start",
"example:prod:start": "ENV=prod npm run example:start",
"example:local:restart": "ENV=local npm run example:restart",
"example:prod:restart": "ENV=prod npm run example:restart",
"example:docker:local:start": "docker-compose -f docker-compose.yml up --build --force-recreate --remove-orphans",
"example:docker:prod:start": "DOMAIN=domain.com DOMAIN_EMAIL=domain@domain.com CERTBOT_MODE=generate docker-compose -f docker-compose.prod.yml up --build --force-recreate --remove-orphans",
"example:docker:local:restart": "docker exec -it nodes-app npm run example:local:restart",
"example:docker:prod:restart": "docker exec -it nodes-app npm run example:prod:restart"
},
"author": "guseyn",
"license": "MIT",
"devDependencies": {
"eslint": "^8.30.0",
"eslint-plugin-node": "^11.1.0",
"jsdoc": "^4.0.4",
"nyc": "^15.1.0"
}
}