-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 917 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 917 Bytes
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
{
"name": "slackdemo",
"version": "1.0.0",
"description": "A very simple app that has simple slack features",
"main": "index.js",
"scripts": {
"start": "npm install && grunt ",
"test": "node node_modules/jshint/bin/jshint app/prod "
},
"engines": {
"node": "10.0.0",
"npm": "6.0.x"
},
"author": "Ogie Ben",
"license": "MIT",
"dependencies": {
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"jasmine": "^3.2.0",
"pg": "^7.4.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"eslint": "^5.4.0",
"grunt": "^1.0.3",
"grunt-babel": "^7.0.0",
"grunt-contrib-jasmine": "^2.0.2",
"grunt-contrib-jshint": "^1.1.0",
"grunt-eslint": "^21.0.0",
"grunt-exec": "^3.0.0",
"jshint": "^2.9.6",
"load-grunt-tasks": "^4.0.0",
"restler": "^3.4.0"
}
}