This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.46 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "planx-api",
"version": "0.0.1",
"private": true,
"description": "API for planx.uk",
"repository": {
"url": "https://github.com/theopensystemslab/planx-editor"
},
"license": "MPL-2.0",
"scripts": {
"server": "ts-node-dev src/index.ts",
"client": "cd client && yarn start",
"start": "concurrently 'yarn server' 'yarn client'",
"build": "rimraf dist && tsc",
"test": "jest",
"serve": "node dist/index.js",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"prettify": "prettier --write './src/**/*.{ts,tsx,html,js,jsx,json}'",
"db:migrate": "yarn typeorm migration:run",
"db:rollback": "yarn typeorm migration:revert"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/helmet": "^0.0.43",
"@types/jest": "^24.0.9",
"@types/node": "^11.13.4",
"@types/socket.io": "^2.1.2",
"concurrently": "^4.1.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-dom": "^3.1.3",
"parcel-bundler": "^1.12.3",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.40",
"tslint": "^5.15.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.3"
},
"dependencies": {
"aws-sdk": "^2.437.0",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"class-validator": "^0.9.1",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"helmet": "^3.16.0",
"javascript-natural-sort": "^0.7.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"method-override": "^3.0.0",
"pg": "^7.9.0",
"postcode": "^2.0.0",
"proj4": "^2.5.0",
"recompose": "^0.30.0",
"reflect-metadata": "^0.1.10",
"sharedb": "^1.0.0-beta.20",
"sharedb-access": "^5.0.0",
"socket.io": "^2.2.0",
"stream": "^0.0.2",
"typeorm": "0.2.16",
"url": "^0.11.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettify && yarn lint && yarn test"
}
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/__tests__/*.(test|spec).(ts|tsx|js)"
]
},
"engines": {
"node": "10.x"
}
}