-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.59 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
66
67
68
69
70
71
72
73
74
{
"name": "Stimmy-things",
"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'",
"css-watch": "postcss ./src/css/index.css --output ./public/style.min.css --watch --config ./postcss.config.js",
"just-frontend": "webpack-dev-server --env.DEV --mode development",
"dev-frontend": "webpack --env.DEV --watch --mode development",
"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": "webpack --env.PROD --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InFact-coop/Stimmy-things.git"
},
"author": "InFACT",
"license": "ISC",
"bugs": {
"url": "https://github.com/InFact-coop/Stimmy-things/issues"
},
"homepage": "https://github.com/InFact-coop/Stimmy-things#readme",
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"appcache-webpack-plugin": "^1.3.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chokidar-cli": "^1.2.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"dotenv": "^4.0.0",
"elm-live": "^2.7.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.2.0",
"mocha": "^4.1.0",
"nodemon": "^1.17.5",
"postcss-loader": "^2.1.4",
"style-loader": "^0.20.3",
"supertest": "^3.0.0",
"webpack-dev-server": "^3.1.3",
"workbox-webpack-plugin": "^3.3.0"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"autoprefixer": "^7.2.6",
"babel-loader": "^8.0.0-beta.3",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"dexie": "^2.0.4",
"elm": "^0.18.0",
"elm-webpack-loader": "^4.5.0",
"env2": "^2.2.2",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"firebase": "^4.13.1",
"flickity": "^2.1.2",
"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",
"request": "^2.87.0",
"tachyons-custom": "^4.9.5",
"webpack": "^4.12.0",
"webpack-cli": "^2.1.5"
}
}