forked from isabella232/viz-sankey-marketplace
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "viz-sankey-marketplace",
"version": "1.0.0",
"license": "MIT",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch --progress",
"lint": "tslint --project tsconfig.json --format stylish 'src/**/*.ts'",
"lint-fix": "tslint --fix --project tsconfig.json --format stylish 'src/**/*.ts'",
"test": "jest"
},
"author": "",
"private": true,
"devDependencies": {
"@jest/globals": "^29.6.1",
"css-loader": "^7.1.2",
"d3": "^7.9.0",
"jest": "^29.6.1",
"terser-webpack-plugin": "^5.3.10",
"to-string-loader": "^1.2.0",
"ts-jest": "^29.1.1",
"ts-loader": "9.5.1",
"ts-node": "^10.9.1",
"tslint": "5.8.0",
"tslint-config-standard": "7.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "5.0.4"
},
"dependencies": {
"@babel/core": "7.24.4",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@types/d3": "^7.4.3",
"@types/d3-sankey": "^0.7.4",
"babel-loader": "^9.1.3",
"d3-sankey": "^0.10.4",
"react": "^16.8.3",
"react-dom": "^16.7.0",
"react-responsive-carousel": "^3.1.51",
"ssf": "^0.11.2",
"typescript": "^5.1.6"
},
"engines": {
"node": "18.12.1"
},
"resolutions": {
"loader-utils": "^1.4.2"
}
}