-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "simple-campaign-page",
"version": "0.3.2",
"description": "Simple Campaign Page makes it easy to set up landing pages with very little configuration.",
"author": "Tom Söderlund",
"license": "MIT",
"main": "server/server.js",
"scripts": {
"webpack": "webpack-cli",
"dev": "nodemon server/server.js",
"start": "node server/server.js",
"test": "node test/app.js",
"lint": "standard",
"fix": "standard --fix"
},
"standard": {
"ignore": [
"dist",
"src/public/js/jquery-ajax.js"
],
"globals": [
"$",
"gtag",
"location",
"SimpleCampaignPage"
]
},
"dependencies": {
"@weld-io/weld-static-assets": "^1.1.1",
"body-parser": "^1.17.1",
"compression": "^1.7.4",
"ejs": "^2.5.6",
"express": "^4.15.2",
"express-cache-controller": "^1.1.0",
"express-minify": "^1.0.0",
"glob": "^7.1.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mongodb": "^2.2.29",
"mongoose": "^4.10.8",
"mongoose-crudify": "^0.2.0",
"mongoose-findorcreate": "^1.0.1",
"morgan": "^1.8.1"
},
"devDependencies": {
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.11.0",
"standard": "^12.0.1",
"supertest": "^3.0.0",
"tape": "^4.6.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
}
}