-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 867 Bytes
/
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
{
"name": "dotenvx-node-template",
"version": "1.1.0",
"description": "A minimal dotenvx setup in a Node.js ecosystem",
"main": "index.js",
"type": "module",
"scripts": {
"start": "dotenvx run -- node index.js",
"start:prod": "cross-env DOTENV_PRIVATE_KEY_PRODUCTION='706afc89eaa09ea9441d0f18f7c2fbbb6c77a201abf47aaa3a607e499a52c51d' npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lfavreli/dotenvx-node-template.git"
},
"keywords": [
"dotenvx",
"environment",
"variables",
"configuration",
"node",
"railway"
],
"author": "@lfavreli",
"license": "MIT",
"bugs": {
"url": "https://github.com/lfavreli/dotenvx-node-template/issues"
},
"homepage": "https://github.com/lfavreli/dotenvx-node-template#readme",
"devDependencies": {
"cross-env": "^7.0.3"
}
}