-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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": "asana-int-boiler",
"version": "1.0.0",
"description": "An example API server for integrating with Asana",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"build": "babel server/src -d server/dist -q --copy-files",
"watch": "babel server/src -d server/dist -w --copy-files"
},
"author": "",
"license": "ISC",
"dependencies": {
"argon2": "^0.19.1",
"asana": "^0.15.1",
"bcrypt": "^2.0.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^6.0.1",
"jsonwebtoken": "^8.2.1",
"mime": "^2.3.1",
"moment": "^2.22.1",
"mongoose": "^5.0.16",
"multer": "^1.3.0",
"schema-inspector": "^1.6.8",
"sharp": "^0.20.2",
"superagent": "^3.8.3",
"uuid": "^3.2.1",
"winston": "^2.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-import": "^1.7.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-walmart": "^2.2.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-react": "^7.7.0"
}
}