-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
{
"name": "feature-viewer-typescript",
"version": "2.3.20",
"description": "Feature Viewer (Typescript)",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"prepare": "echo \"Building...\" && npm run build",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BioComputingUP/FeatureViewerTypeScript.git"
},
"keywords": [],
"author": "Martina Bevilacqua, Lisanna Paladin and collaborators",
"license": "ISC",
"bugs": {
"url": "https://github.com/BioComputingUP/FeatureViewerTypeScript/issues"
},
"homepage": "https://github.com/BioComputingUP/FeatureViewerTypeScript#readme",
"dependencies": {
"@types/d3-axis": "1.0.12",
"@types/d3-brush": "1.0.6",
"@types/d3-scale": "2.1.1",
"@types/d3-selection": "1.4.1",
"@types/d3-shape": "1.3.1",
"@types/d3-transition": "^1.3.2",
"@types/underscore": "1.8.16",
"d3-axis": "^1.0.12",
"d3-brush": "^1.0.6",
"d3-scale": "2.2.2",
"d3-selection": "1.4.0",
"d3-shape": "1.3.5",
"underscore": "^1.9.1"
},
"devDependencies": {
"@types/node": "^18.7.23",
"@webpack-cli/generators": "^2.5.0",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"sass-loader": "^13.0.2",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}