-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
34 lines (34 loc) · 938 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
33
34
{
"name": "rws-cards-api",
"version": "2.0.0",
"description": "Simple REST API for the tarot cards of the Rider-Waite-Smith deck.",
"main": "app.js",
"scripts": {
"start-dev": "npx nodemon exec babel-node app.js",
"dev": "npm run start-dev",
"start": "NODE_ENV=production node ./dist/app.js",
"build": "rm -rf ./dist && NODE_ENV=production ./node_modules/@babel/cli/bin/babel.js app.js -d ./dist"
},
"author": "ekelen",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.12.1",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"fs": "0.0.1-security",
"lodash.clonedeep": "^4.5.0",
"lodash.range": "^3.2.0",
"lodash.remove": "^4.7.0",
"path": "^0.12.7"
},
"devDependencies": {
"nodemon": "^2.0.16"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
}
}