-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "sample-insurance-claim-app",
"version": "0.0.1",
"description": "Sample application for insurance claims.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp build",
"dev": "gulp dev",
"start": "node app/bin/www.js",
"deploy": "cf push insurance-claim"
},
"engines": {
"node": "^6.0.0"
},
"author": "Eren Dabanlioglu",
"license": "ISC",
"dependencies": {
"carbon-components": "^9.0.2",
"express": "^4.16.0",
"hbs": "^4.0.1",
"requirejs": "^2.3.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.1",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.24.5",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-babel": "^6.1.3",
"gulp-nodemon": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.3.0",
"sass-lint": "^1.10.2"
}
}