-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 988 Bytes
/
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
{
"name": "kalix-trial-shoppingcart-ts",
"version": "0.0.1",
"engines": {
"node": "~18",
"npm": ">=6.0.0"
},
"dependencies": {
"@kalix-io/kalix-javascript-sdk": "^1.1.0"
},
"devDependencies": {
"@kalix-io/kalix-scripts": "^1.1.0",
"@kalix-io/testkit": "^1.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.16.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.7.4"
},
"config": {
"typescript": true,
"dockerImage": "my-docker-repo/kalix-trial-shoppingcart-ts",
"sourceDir": "./src",
"testSourceDir": "./test",
"protoSourceDir": "./proto",
"generatedSourceDir": "./lib/generated",
"compileDescriptorArgs": []
},
"scripts": {
"start": "node dist/src/index.js",
"test": "ts-mocha test/**/*.test.ts",
"build": "kalix-scripts build && tsc",
"package": "kalix-scripts package",
"deploy": "kalix-scripts deploy"
}
}