-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.04 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
{
"name": "GARDEN-NET",
"version": "0.0.3",
"main": "./dist/bundle.js",
"license": "AGPL-3.0-or-later",
"author": "Miguel Madrid Mencía <miguel.madrid-mencia@inserm.fr>",
"dependencies": {
"bootstrap": "^4.3.1",
"cytoscape": "^3.7.0",
"cytoscape-popper": "^1.0.4",
"cytoscape-svg": "^0.2.0",
"http-server": "^0.11.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.1",
"reactstrap": "^8.0.0",
"redux": "^4.0.1",
"tippy.js": "^4.3.3"
},
"devDependencies": {
"@types/cytoscape": "^3.4.3",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.0.9",
"@types/react-router-dom": "^4.3.3",
"@types/reactstrap": "^8.0.1",
"compression-webpack-plugin": "^3.0.0",
"css-loader": "^2.1.1",
"jest": "^24.8.0",
"prettier": "1.18.2",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.2.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"scripts": {
"build": "./node_modules/.bin/webpack --mode development --watch --progress --display-error-details --display verbose",
"build:no-watch": "./node_modules/.bin/webpack --mode development --progress --display-error-details",
"dist": "./node_modules/.bin/webpack --mode production --progress",
"fmt": "./node_modules/.bin/prettier --write 'src/**/*.{ts,tsx}'",
"lint": "./node_modules/.bin/tslint --fix --project tsconfig.json",
"serve": "./node_modules/.bin/http-server ./ -a 0.0.0.0 -p 8080 --cors --gzip -o",
"test": "./node_modules/.bin/jest"
}
}