-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.33 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
49
50
{
"name": "kffp-archive",
"version": "1.0.0",
"description": "Automated file upload application",
"main": "index.js",
"scripts": {
"test": "ava --verbose",
"test:watch": "ava --verbose --watch",
"lint": "./node_modules/.bin/eslint src",
"dev": "nodemon index.js",
"start": "pm2 reload ecosystem.config.js --env production",
"build:cleanup": "babel ./src -d ./build",
"cleanup": "node ./build/cleanup.js"
},
"keywords": [
"node"
],
"author": "Mark Arciaga",
"license": "ISC",
"devDependencies": {
"ava": "^0.19.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.11.0",
"sinon": "^2.2.0"
},
"dependencies": {
"aws-sdk": "^2.49.0",
"babel-cli": "6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.0",
"chokidar": "^1.6.1",
"del": "^3.0.0",
"dotenv": "^4.0.0"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}