-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "swf",
"version": "1.0.0",
"description": "swf",
"main": "dist",
"scripts": {
"dev": "NODE_ENV=development nodemon -w src --exec \"babel-node src --presets es2015,stage-0\"",
"build": "babel src -s -D -d dist --presets es2015,stage-0",
"start": "SET NODE_ENV=dev && node server.js",
"prestart": "npm run -s build",
"lint": "eslint src",
"test": "mocha --timeout 10000"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "https://github.com/gmanroney/swf.git"
},
"author": "gerard moroney <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/gmanroney/swf/issues"
},
"homepage": "https://github.com/gmanroney/swf#readme",
"dependencies": {
"@angular/animations": "^5.0.5",
"@angular/common": "^5.0.5",
"@angular/core": "^5.0.5",
"@angular/platform-browser": "^5.0.5",
"angular": "^1.6.7",
"angular-animate": "^1.6.7",
"angular-bootstrap-calendar": "^0.30.0",
"angular-bootstrap-colorpicker": "^3.0.32",
"angular-calendar": "^0.22.1",
"angular-momentjs": "^0.2.2",
"angular-ui-bootstrap": "^2.5.6",
"angular-ui-calendar": "^1.0.2",
"angularjs-datepicker": "^2.1.23",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.18.2",
"bootstrap": "^3.3.7",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"chai-moment": "^0.1.0",
"csvtojson": "^1.1.9",
"eslint": "^4.12.0",
"express": "^4.16.2",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-qunit": "^2.0.0",
"grunt-contrib-uglify": "^3.2.1",
"grunt-contrib-watch": "^1.0.0",
"interactjs": "^1.3.2",
"material-components-web": "^0.26.0",
"mocha": "^4.0.1",
"moment": "^2.19.4",
"mongoose": "^4.13.5",
"nodemon": "^1.12.1",
"nyc": "^11.3.0",
"request": "^2.83.0",
"rrule": "^2.2.0",
"supertest": "^3.0.0"
},
"devDependencies": {
"@angular/cli": "^1.5.4",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0"
}
}