-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 957 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
{
"name": "influenzanet-common-study",
"version": "0.1.0",
"description": "",
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"prestart": "npm run-script build",
"start": "node build/index.js",
"export":"node build/build.js",
"test": "jest --config jestconfig.json"
},
"dependencies": {
"@types/jest": "29.0.3",
"@types/node": "^16.10.3",
"case-editor-tools": "^1.6.4",
"survey-engine": "^1.2.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.67.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.2",
"@rollup/plugin-json": "4.1.0",
"jest": "^29.0.3",
"ts-jest": "^29.0.1"
}
}