-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "stkVis",
"version": "1.0.0",
"description": "A visualizer for the stk library.",
"main": "main.js",
"repository": "https://github.com/lukasturcani/stkVis",
"author": "Lukas Turcani",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.54",
"@types/mongodb": "^3.5.18",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/redux-logger": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"cross-env": "^7.0.2",
"electron": "^8.2.5",
"electron-hot-reload": "^0.1.4",
"electron-packager": "^15.0.0",
"eslint": "^7.1.0",
"html-webpack-plugin": "^4.3.0",
"material-table": "1.63.1",
"mol-draw": "^1.0.6",
"mongodb": "^3.5.7",
"openchemlib": "^7.2.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"smiles-drawer": "^1.2.0",
"ts-loader": "^7.0.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"watch": "webpack --watch --config webpack.config.js",
"prod": "rm -r dist/* && webpack --config webpack.prod.js && cp prod.package.json ./dist/package.json && cp prod.main.js ./dist/main.js",
"electron": "cross-env APP_DEV=true electron .",
"package": "./create-packages.bash"
}
}