-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.12 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": "BlueCross",
"version": "1.0.0",
"description": "Rehome your pet",
"main": "index.js",
"scripts": {
"start": "node ./src/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-frontend-debugless": "npm run elm-watch & npm run css-watch",
"dev-backend": "NODE_ENV=development nodemon ./src/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/elm-express-airtable-starter.git"
},
"author": "inFACT",
"license": "ISC",
"bugs": {
"url": "https://github.com/InFact-coop/elm-express-airtable-starter/"
},
"homepage": "https://github.com/InFact-coop/elm-express-airtable-starter#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.17.4",
"supertest": "^3.1.0"
},
"dependencies": {
"airtable": "^0.5.4",
"autoprefixer": "^7.2.6",
"body-parser": "^1.18.3",
"cloudinary": "^1.11.0",
"elm": "^0.18.0",
"elm-format": "^0.8.3",
"express": "^4.16.3",
"postcss-clean": "^1.1.0",
"postcss-cli": "^4.1.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.3.1",
"postcss-import": "^11.1.0",
"sendemail": "^3.4.0",
"tachyons-custom": "4.9.4"
}
}