-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.89 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
{
"name": "shh-backend",
"version": "0.4.3",
"private": false,
"scripts": {
"start": "npm run server",
"prettier": "prettier --config .prettierrc --write \"{src,static}/**/*.{ts,tsx,js,css,html}\" webpack.config.js",
"prettier-watch": "onchange \"**/*.{js,ts,tsx,json,css,html}\" -- prettier --config .prettierrc --write \"{{changed}}\"",
"server": "clear & clear & export TZ=\"Europe/Amsterdam\"; ts-node -P ./tsconfig.json -r dotenv/config src/index.ts",
"server-watch": "onchange -i \"./src/**/*.{ts,tsx,json}\" -- npm run server",
"expose": "lt --port 3000 --subdomain shh-backend",
"test": "jest --runInBand --setupFiles dotenv/config",
"test-watch": "npm run test -- --watch",
"preversion": "npm run test",
"postversion": "git push && git push --tags && npm run deploy",
"deploy": "git push heroku"
},
"dependencies": {
"@types/cors": "^2.8.5",
"@types/form-data": "^2.5.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^24.0.12",
"body-parse": "^0.1.0",
"configchecker": "^1.0.6",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"form-data": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.4",
"uuid": "^3.3.2",
"@types/uuid": "^3.4.3"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/knex": "^0.14.26",
"@types/node": "^10.12.1",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.4.4",
"concurrently": "^4.1.0",
"jest": "^24.7.1",
"onchange": "^4.1.0",
"prettier": "^1.12.1",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2"
}
}