-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.81 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
{
"name": "lwc",
"version": "1.0.0",
"description": "Find the help that speaks to you",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha ./tests/* ",
"test:watch": "NODE_ENV=test mocha ./tests/* --watch",
"devbug": "elm-live src/elm/Main.elm --output=public/elm.js --dir=public --open --debug --pushstate & npm run css-watch",
"dev": "elm-live src/elm/Main.elm --output=public/elm.js --dir=public --open --pushstate & npm run css-watch",
"build": "npm run css-build; elm-make src/elm/Main.elm --output=public/elm.js --yes",
"css-watch": "postcss ./src/css/index.css --output ./public/style.min.css --watch --config ./postcss.config.js",
"css-build": "postcss ./src/css/index.css --output ./public/style.min.css --config ./postcss.config.js",
"dev-server": "NODE_ENV=development nodemon ./src/server/start",
"heroku-postbuild": "npm run build",
"start": "node ./src/server/start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InFact-coop/LWC.git"
},
"author": "inFACT",
"license": "ISC",
"bugs": {
"url": "https://github.com/InFact-coop/LWC/issues"
},
"homepage": "https://github.com/InFact-coop/LWC#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"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.2",
"autoprefixer": "^7.2.6",
"body-parser": "^1.18.2",
"elm": "^0.18.0",
"express": "^4.16.2",
"express-validation": "^1.0.2",
"joi": "^13.1.1",
"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",
"tachyons-custom": "^4.9.4"
}
}