generated from usnistgov/opensource-repo
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 2.6 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
{
"name": "oar-pdr-angular",
"workspaces": [
"lib",
"oar-lps",
"pdr-lps",
"midas-author/lps",
"midas-author/wizard",
"pdr-rpa/pdr-rpa-request",
"pdr-rpa/pdr-rpa-approve"
],
"scripts": {
"build-lib": "npm run build oarng --prefix ./lib",
"build-oarlps": "npm run build oarlps --prefix ./oar-lps",
"build-pdrlps": "npm run build pdr-lps --prefix ./pdr-lps",
"build-midaslps": "npm run build midas-lps --prefix ./midas-author/lps",
"build-midaswiz": "npm run build step-wizard --prefix ./midas-author/wizard",
"build-midas": "npm run build oarng --prefix ./lib && npm run build step-wizard --prefix ./midas-author/wizard && npm run build midas-lps --prefix ./midas-author/lps",
"build-rpa-request": "npm run build pdr-rpa-request --prefix ./pdr-rpa/pdr-rpa-request",
"build-rpa-approve": "npm run build pdr-rpa-approve --prefix ./pdr-rpa/pdr-rpa-approve",
"build-all": "npm run build-lib; npm run build-oarlps; npm run build-sw; npm run build-midaslps; npm run build-rpa-request; npm run build-rpa-approve",
"build-sw": "npm run build step-wizard --prefix ./midas-author/wizard",
"start-sw": "npm run start step-wizard --prefix ./midas-author/wizard",
"start-pdrlps": "npm run start pdr-lps --prefix ./pdr-lps",
"start-midaslps": "npm run start midas-lps --prefix ./midas-author/lps",
"test": "npm run test:midasauthor; npm run test:wizard; test:oarlps; test:pdrlps",
"test:midasauthor": "jest --config ./midas-author/lps/jest.config.js --silent",
"test:wizard": "jest --config ./midas-author/wizard/jest.config.js --silent",
"test:oarlps": "jest --config ./oar-lps/libs/oarlps/jest.config.js --silent",
"test:pdrlps": "jest --config ./pdr-lps/jest.config.js --silent",
"start-rpa-request": "npm run start pdr-rpa-request --prefix ./pdr-rpa/pdr-rpa-request",
"start-rpa-approve": "npm run start pdr-rpa-approve --prefix ./pdr-rpa/pdr-rpa-approve",
"test:pdr-rpa-request": "jest --config ./pdr-rpa/pdr-rpa-request/jest.config.js --silent",
"test:pdr-rpa-approve": "jest --config ./pdr-rpa/pdr-rpa-approve/jest.config.js --silent"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.17.0",
"fs": "0.0.2",
"jest": "^29.5.0",
"jest-preset-angular": "^13.1.0",
"process": "0.11.10",
"ts-jest": "^29.1.0",
"typescript": "4.9.5"
},
"dependencies": {
"@ng-select/ng-select": "^11.0.0",
"rxjs": "~7.8.1"
}
}