2018-01-07 00:51:25 +01:00
|
|
|
{
|
|
|
|
"name": "TODO",
|
|
|
|
"description": "TODO",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"scripts": {
|
2018-01-12 17:36:31 +01:00
|
|
|
"dev": "concurrently --kill-others \"npm run build-sass-watch\" \"node server.js\"",
|
|
|
|
"build": "npm run build-sass && sapper build",
|
2018-01-07 00:51:25 +01:00
|
|
|
"start": "cross-env NODE_ENV=production node server.js",
|
2018-01-12 17:36:31 +01:00
|
|
|
"build-sass": "node-sass scss -o assets",
|
|
|
|
"build-sass-watch": "npm run build-sass && node-sass -w scss -o assets",
|
2018-01-07 00:51:25 +01:00
|
|
|
"cy:run": "cypress run",
|
|
|
|
"cy:open": "cypress open",
|
|
|
|
"test": "run-p --race dev cy:run"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"compression": "^1.7.1",
|
2018-01-12 17:36:31 +01:00
|
|
|
"concurrently": "^3.5.1",
|
2018-01-07 00:51:25 +01:00
|
|
|
"cross-env": "^5.1.3",
|
|
|
|
"css-loader": "^0.28.7",
|
|
|
|
"express": "^4.16.2",
|
|
|
|
"extract-text-webpack-plugin": "^3.0.2",
|
2018-01-07 05:44:47 +01:00
|
|
|
"font-awesome-svg-png": "^1.2.2",
|
2018-01-07 00:51:25 +01:00
|
|
|
"glob": "^7.1.2",
|
2018-01-13 23:19:51 +01:00
|
|
|
"idb": "^2.0.4",
|
2018-01-07 00:51:25 +01:00
|
|
|
"node-fetch": "^1.7.3",
|
2018-01-12 17:36:31 +01:00
|
|
|
"node-sass": "^4.7.2",
|
2018-01-07 00:51:25 +01:00
|
|
|
"npm-run-all": "^4.1.2",
|
|
|
|
"sapper": "^0.3.1",
|
|
|
|
"serve-static": "^1.13.1",
|
|
|
|
"style-loader": "^0.19.1",
|
|
|
|
"svelte": "^1.50.0",
|
|
|
|
"svelte-loader": "^2.3.3",
|
|
|
|
"uglifyjs-webpack-plugin": "^1.1.5",
|
2018-01-08 08:00:15 +01:00
|
|
|
"url-search-params": "^0.10.0",
|
2018-01-07 00:51:25 +01:00
|
|
|
"webpack": "^3.10.0"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">= 8"
|
|
|
|
}
|
|
|
|
}
|