-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.3 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
{
"name": "LCN",
"version": "1.0.0",
"description": "Find the help that speaks to you",
"main": "index.js",
"scripts": {
"start": "node ./server/start",
"test": "NODE_ENV=test mocha ./tests/* ",
"test:watch": "NODE_ENV=test mocha ./tests/* --watch",
"elm-watch-debug": "chokidar '**/*.elm' -c 'elm make src/elm/Main.elm --output=public/elm.js --debug'",
"elm-watch": "chokidar '**/*.elm' -c 'elm make src/elm/Main.elm --output=public/elm.js'",
"just-frontend": "elm live src/elm/Main.elm --debug --output=public/elm.js --dir=public --open --pushstate & npm run css-watch",
"css-watch": "postcss ./src/css/index.css --output ./public/style.min.css --watch --config ./postcss.config.js",
"dev-frontend": "npm run elm-watch-debug & npm run css-watch",
"dev-backend": "NODE_ENV=development nodemon ./server/start",
"css-build": "postcss ./src/css/index.css --output ./public/style.min.css --config ./postcss.config.js",
"heroku-postbuild": "npm run css-build; elm-make src/elm/Main.elm --output=public/elm.js --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InFact-coop/LCN.git"
},
"author": "inFACT",
"license": "ISC",
"bugs": {
"url": "https://github.com/InFact-coop/LCN/issues"
},
"homepage": "https://github.com/InFact-coop/LCN#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chokidar-cli": "^1.2.0",
"dotenv": "^4.0.0",
"elm-live": "^2.7.5",
"mocha": "^4.1.0",
"nodemon": "^1.14.11",
"supertest": "^3.0.0"
},
"dependencies": {
"airtable": "^0.5.7",
"autoprefixer": "^7.1.6",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"elm": "^0.18.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"mongoose": "^5.0.12",
"morgan": "^1.9.0",
"nodemailer": "^4.6.4",
"nodemailer-express-handlebars": "^3.0.0",
"nodemailer-sendgrid": "^1.0.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"postcss-clean": "^1.1.0",
"postcss-cli": "^4.1.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.2.0",
"postcss-import": "^11.0.0",
"ramda": "^0.25.0",
"tachyons-custom": "^4.9.0"
}
}