-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "onkometrorikki",
"version": "1.0.0",
"description": "Check if the metro in Helsinki area is broken at the moment",
"scripts": {
"start": "npm run backend",
"dev": "NODE_ENV=development ELM_APP_API_URL=http://localhost:4000 npm-run-all --parallel backend frontend",
"frontend": "NODE_OPTIONS='--openssl-legacy-provider' elm-app start",
"backend": "ts-node ./backend/index.ts",
"build": "NODE_OPTIONS='--openssl-legacy-provider' NODE_ENV=production elm-app build",
"test": "elm-format --validate . && elm-test",
"prepush": "npm test",
"elm-format": "elm-format .",
"format": "prettier --write 'src/**/*.{ts,js,css,md,html}' 'backend/**/*.{ts,js,css,md,html}' 'public/**/*.{ts,js,css,md,html}'",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"lint-staged": {
"linters": {
"*.{ts,js,css,md,html}": [
"prettier --write",
"git add"
]
}
},
"author": "",
"license": "MIT",
"dependencies": {
"@koa/cors": "3.0.0",
"axios": "0.19.0",
"dotenv": "8.0.0",
"koa": "2.7.0",
"koa-bodyparser": "4.2.1",
"koa-cache-control": "2.0.0",
"koa-request": "1.0.0",
"koa-route": "3.2.0",
"lodash": "4.17.21",
"redis": "2.8.0",
"request": "2.88.0",
"telegraf": "3.30.1",
"ts-node": "8.2.0",
"twit": "2.2.11"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.2.15",
"all-contributors-cli": "6.6.1",
"create-elm-app": "4.2.1",
"elm": "0.19.1-3",
"elm-format": "0.8.3",
"elm-test": "0.19.1-revision2",
"husky": "2.3.0",
"lint-staged": "8.1.7",
"npm-run-all": "4.1.5",
"prettier": "1.17.1",
"typescript": "3.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}