-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "@accordproject/concerto-graph",
"version": "1.3.0",
"description": "Concerto Graph",
"main": "dist/src/index.js",
"license": "Apache-2.0",
"scripts": {
"prebuild": "npx eslint src/**/*.ts",
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/src/demo/index.js",
"nda": "node dist/src/demo/nda.js",
"disqualified": "node dist/src/demo/disqualified.js",
"store": "node dist/src/demo/store.js",
"test": "jest",
"coverage": "npx jest --coverage",
"docs": "typedoc"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"babel-jest": "^29.7.0",
"dayjs": "^1.11.10",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"semver": "^7.5.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@accordproject/concerto-core": "^3.16.8",
"chalk": "^4",
"gpt-tokens": "^1.3.6",
"neo4j-driver": "^5.15.0",
"openai": "^4.20.1",
"uuid": "^9.0.1"
}
}