This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.49 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
{
"name": "statswales",
"version": "1.0.0",
"description": "This is the StatsWales private alpha repository. This repository is here to allow us to experiment with a number of technologies to prove out a number of hypotheses and establish the technologies we may wish to take in to Beta.",
"main": "server.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"tsc": "tsc",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint-and-fix": "eslint . --ext .ts --fix",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"test:ci": "jest --ci --coverage --config=jest.config.ts",
"build": "rimraf ./dist && npm-run-all clean lint test tsc copy-assets",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"start": "npm run build && node dist/server.js",
"start:container": "node dist/server.js",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration": "npm run typeorm migration:run"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@shopify/eslint-plugin": "^44.0.0",
"@types/better-sqlite3": "^7.6.9",
"@types/express": ">=4.17.21",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.27",
"@types/pino": "^7.0.5",
"@types/shelljs": "^0.8.15",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"better-sqlite3": "^9.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^10.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-junit-reporter": "^1.1.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@azure/storage-file-datalake": "^12.16.0",
"csv": "^6.3.8",
"dotenv": "^16.4.4",
"ejs": "^3.1.9",
"express": ">=4.19.2",
"govuk-frontend": "^5.1.0",
"i18next": "^23.10.1",
"i18next-fs-backend": "^2.3.1",
"i18next-http-middleware": "^3.5.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.5",
"pino": "^8.19.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20"
}
}