-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
{
"name": "@complat/chemotion-converter-client",
"version": "0.12.0",
"main": "./dist/bundle.js",
"files": [
"dist",
"public",
"README.md"
],
"scripts": {
"build:prod": "webpack --config webpack/prod.config.js --mode production",
"build:bundle": "webpack --config webpack/lib.config.js --mode production",
"build": "webpack --config webpack/dev.config.js --mode development",
"watch": "webpack --config webpack/dev.config.js --watch --mode development",
"serve": "webpack-dev-server --config webpack/dev.config.js --open --mode development"
},
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/ComPlat/chemotion-converter-client"
},
"dependencies": {
"bootstrap": "^5.3.3",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react-select": "5.2.2"
},
"peerDependencies": {
"ag-grid-community": "^32.0.1",
"ag-grid-react": "^32.0.1",
"react": "^17.0.2",
"react-bootstrap": "~2.10.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"ag-grid-community": "^32.0.1",
"ag-grid-react": "^32.0.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "^9.0.0",
"react": "^17.0.2",
"react-bootstrap": "~2.10.2",
"react-dom": "^17.0.2",
"sass": "^1.49.10",
"sass-loader": "^16.0.1",
"webpack": "5.94.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "5.8.0"
},
"publishConfig": {
"access": "public"
}
}