-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.9 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
{
"name": "codesets",
"version": "1.0.0",
"description": "A shared codesets / resources router for virtual finland projects",
"scripts": {
"prebuild": "npm i && npm run clean",
"build": "tsc && ts-node src/build/finalize-build.ts",
"build:infra": "npm -C infra run build",
"clean": "rimraf dist",
"deploy": "npm run build && npm run -C infra deploy",
"dev": "nodemon --delay 80ms --watch 'src' -e 'ts' --exec \"npm run build && npm run serve\"",
"serve": "serverless offline --config ./serverless-offline.yml",
"start": "nodemon --delay 80ms --watch 'src' -e 'ts' --exec \"npm run build && npm run serve\"",
"test": "jest",
"format": "prettier --write \"./**/*.ts\"",
"lint": "eslint --ext .ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Virtual-Finland-Development/codesets.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Virtual-Finland-Development/codesets/issues"
},
"homepage": "https://github.com/Virtual-Finland-Development/codesets#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.111",
"@types/jest": "^29.4.0",
"@types/mime": "^3.0.1",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"jest": "^29.4.3",
"nodemon": "^3.0.1",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"serverless-offline": "^12.0.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.383.0",
"@aws-sdk/client-sns": "^3.395.0",
"@iso4217/json": "^20230101.1.6",
"@transcend-io/conflux": "^4.0.3",
"directory-import": "^2.3.1",
"iso-3166": "^4.2.0",
"iso-639": "^0.2.2",
"mime": "^3.0.0",
"ts-mixer": "^6.0.3",
"valibot": "^0.8.0"
}
}