-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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": "extension-app-data-writeback-reference-implementation",
"version": "1.0.0",
"scripts": {
"build": "tsc --build tsconfig.json && npm run copy-files",
"copy-files": "cpx './src/**/*.cto' 'dist' && cpx './src/db/*.json' 'dist/db'",
"lint": "npx eslint --ext .ts src/",
"start": "node ./dist --env=production",
"dev": "nodemon"
},
"nodemonConfig": {
"watch": [
"src",
"views"
],
"ext": "ts, pug",
"exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./src"
},
"dependencies": {
"@accordproject/concerto-cli": "^3.16.6",
"@accordproject/concerto-core": "~3.19.6",
"@accordproject/concerto-types": "~3.19.6",
"ajv": "^8.17.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-jwt": "^8.4.1",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"npm": "^11.0.0",
"pug": "^3.0.2",
"ts-command-line-args": "^2.5.0",
"ts-force": "^3.4.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/node": "^20.2.3",
"@types/pug": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"cpx": "^1.5.0",
"eslint": "^8.41.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
}
}