forked from ekelen/tarot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 922 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
35
36
{
"name": "rws-cards-api",
"version": "1.0.0",
"description": "Simple REST API for the tarot cards of the Rider-Waite-Smith deck.",
"main": "app.js",
"scripts": {
"start-dev": "nodemon --exec babel-node --presets=env app.js",
"validate": "babel-node --presets=env data_validate.js",
"start": "node dist/app.js",
"build": "babel app.js -d dist",
"babel-version": "babel --version"
},
"author": "ekelen",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"fs": "0.0.1-security",
"moment": "^2.20.1",
"path": "^0.12.7"
},
"devDependencies": {
"async": "^2.6.0",
"axios": "^0.17.1",
"babel-core": "^6.26.0",
"cheerio": "^1.0.0-rc.2",
"jsonfile": "^4.0.0",
"nodemon": "^1.14.12"
},
"engines": {
"node": "8.9.4",
"npm": "5.6.0"
}
}