-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "payment-gateway",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "bower install",
"lint": "semistandard",
"build": "echo ${BUILD_TAG:-$(date +%y-%m-%d.%H.%M)} > public/version",
"start": "node app.js"
},
"dependencies": {
"body-parser": "~1.4.3",
"coffee-script": "^1.8.0",
"compression": "~1.0.8",
"cookie-parser": "~1.3.2",
"express": "~4.2.0",
"glob": "^4.0.6",
"jade": "~1.3.0",
"lodash": "^2.4.1",
"marked": "^0.3.2",
"method-override": "~2.1.1",
"moment": "^2.8.4",
"mongoose": "^4.0.5",
"morgan": "~1.1.1",
"node-schedule": "^1.0.0",
"nodemailer": "^1.3.0",
"nodemailer-smtp-transport": "^0.1.13",
"phantom": "^6.0.3",
"q": "^1.3.0",
"raven": "^0.8.1",
"request": "^2.81.0",
"sentence-tokenizer": "0.0.8",
"serve-favicon": "~2.0.1",
"superagent": "^0.21.0"
},
"devDependencies": {
"bower": "^1.7.7",
"grunt": "~0.4.5",
"grunt-contrib-compass": "~0.9.0",
"grunt-contrib-jasmine": "^0.8.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-develop": "~0.4.0",
"grunt-jasmine-node": "^0.2.1",
"grunt-jasmine-node-coffee": "^0.1.4",
"load-grunt-tasks": "~0.6.0",
"semistandard": "^7.0.2",
"time-grunt": "~0.3.2"
},
"semistandard": {
"ignore": [
"node_modules/**",
"public/components/**",
"public/js/download/**"
]
}
}