-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.32 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "bbu-airtable",
"version": "1.0.0",
"description": "Airtable cache for BBU",
"main": "app.js",
"scripts": {
"start": "npm run prod",
"dev": "NODE_ENV=development babel-watch ./src/bin/www",
"prod": "npm run build && NODE_ENV=production node ./dist/bin/www",
"build": "npm run clean && babel ./src --out-dir dist",
"clean": "rimraf dist",
"watch": "nodemon --config ./nodemon.json --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aerugo/bbu-airtable.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aerugo/bbu-airtable/issues"
},
"homepage": "https://github.com/aerugo/bbu-airtable#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"airtable": "^0.8.1",
"axios": "^0.19.0",
"cookie-parser": "^1.4.4",
"core-js": "^3.6.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"memory-cache": "^0.2.0",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.3.1",
"babel-watch": "^7.0.0",
"eslint": "^5.13.0",
"nodemon": "^1.18.9"
}
}