-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "dicomedit",
"version": "0.1.3",
"main": "dist/web/dicomedit.min.js",
"types": "@types/index.d.ts",
"license": "MIT",
"author": "Neuroinformatics Research Group at Washington University in St. Louis",
"homepage": "https://github.com/WoonchanCho/dicomedit",
"scripts": {
"clean": "yarn clean:dist && yarn clean:coverage",
"clean:coverage": "shx rm -rf coverage",
"clean:dist": "shx rm -rf dist",
"clean:docs": "shx rm -rf docs",
"doc:generate": "yarn clean:docs && jsdoc -c jsdoc.conf.js",
"prebuild": "cd node_modules && cd dcmjs && shx rm -rf node_modules && yarn",
"build": "yarn prebuild && yarn clean:dist && yarn build:dev && yarn build:prod && yarn build:type",
"build:dev": "webpack --progress --config ./config/webpack/webpack-dev.js",
"build:prod": "webpack --progress --config ./config/webpack/webpack-prod.js",
"build:watch": "webpack --progress --watch --config ./config/webpack",
"build:type": "tsc",
"release": "npm release-it",
"test": "npx mocha",
"antlr": "shx rm -rf src/Antlr/lib/* && ./gradle/gradlew -p ./gradle generateParser",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@webpack-cli/init": "^1.1.1",
"babel-loader": "^8.2.2",
"chai": "^4.2.0",
"compression-webpack-plugin": "^7.1.1",
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"esm": "^3.2.25",
"jsdoc": "^3.6.6",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"mocha": "^8.2.1",
"mocha-loader": "^5.1.5",
"nodemon": "^2.0.6",
"raw-loader": "^4.0.2",
"release-it": "^14.2.2",
"semantic-release": "^17.4.0",
"shx": "^0.3.3",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"antlr4": "^4.9.1",
"big-integer": "^1.6.48",
"dcmjs": "https://github.com/WoonchanCho/dcmjs.git#48325586d4a44254f875efec000f8f2bc3b3329c",
"debug": "^4.3.1",
"dicomedit-uuid": "^8.3.2",
"isomorphic-unfetch": "^3.1.0",
"lodash.clonedeep": "^4.5.0",
"pegjs": "^0.10.0",
"pegjs-backtrace": "^0.2.0"
},
"sideEffects": false,
"engineStrict": true,
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/WoonchanCho/dicomedit.git"
}
}