-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "@passit/backend",
"version": "1.0.0",
"license": "MIT",
"authors": [
{
"name": "Arella Matteo"
},
{
"name": "De Luca Giovanni"
}
],
"private": true,
"workspaces": [
"packages/**",
"app/**",
"test/**"
],
"scripts": {
"clean": "lerna run clean",
"build": "./scripts/build.sh",
"test": "lerna run test --ignore=@passit/test-e2e",
"test:e2e": "lerna run test --scope=@passit/test-e2e",
"deploy": "./scripts/deploy.sh",
"destroy": "./scripts/destroy.sh",
"cdk:bootstrap": "cdk bootstrap",
"cdk:synth": "cdk synth",
"cdk:diff": "cdk diff --no-color 2>&1 | tee cdk.log"
},
"devDependencies": {
"@testdeck/mocha": "^0.1.2",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"cdk": "1.90.0",
"chai": "^4.2.0",
"eslint": "~7.14.0",
"eslint-config-airbnb-base": "~14.2.1",
"lerna": "^3.22.1",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
}
}