-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 KB
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
{
"name": "d2s-ui-react",
"version": "1.0.9",
"author": "d2r-app",
"license": "ISC",
"description": "React components based on d2s-ui",
"dependencies": {
"jimp": "^0.16.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "5.0.1",
"react-tooltip": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"axios": "^0.27.2",
"babel-loader": "^8.2.5",
"cors": "^2.8.5",
"css-loader": "^6.7.1",
"express": "^4.18.1",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"main": "dist/main.js",
"module": "dist/main.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "npm run sass && react-scripts start",
"sass": "sass --sourcemap=none src/styles/d2s-ui.scss src/lib/components/d2s-ui.css",
"webpack": "rm -rf dist && webpack",
"d2s": "tar czf dist/d2s.tar.gz -C svr d2s",
"build": "npm run sass && npm run webpack && npm run d2s"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
"Electron 18.1",
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/d2r-app/d2s-ui-react.git"
}
}