-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "facet-tree",
"version": "1.0.0",
"description": "facet tree generation",
"main": "index.js",
"author": "wkw307",
"license": "MIT",
"dependencies": {
"@ant-design/colors": "^3.2.2",
"@types/d3": "^5.7.2",
"angular": "1.7.9",
"angularjs-slider": "^6.6.1",
"axios": "^0.19.0",
"d3": "^5.7.0",
"jest-cli": "^24.9.0",
"jquery": "^3.3.1",
"lodash": "^4.17.15",
"rxjs": "^6.5.3"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/lodash": "^4.14.144",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.4.0",
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.6.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"scripts": {
"test": "jest",
"build": "rimraf ./dst && tsc",
"webpack": "webpack",
"dev": "npm run webpack -- --mode development --config ./config/webpack.config.js",
"prod": "npm run webpack -- --mode production --config ./config/webpack.config.js",
"pack": "rimraf module && npm run webpack -- --mode production --config ./config/webpack.config.dev.js"
}
}