-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
71 lines (71 loc) · 2.25 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
68
69
70
71
{
"name": "easyeda-ibom-extension",
"version": "0.1.2",
"description": "",
"scripts": {
"build": "webpack --mode production",
"start": "webpack --mode development --watch --env LIVE_RELOAD=yes",
"build-live": "webpack --mode production --env LIVE_RELOAD=yes",
"live-reload": "npx ./scripts/start-live-reload.js",
"bump:patch": "npm version --no-git-tag-version patch",
"bump:minor": "npm version --no-git-tag-version minor",
"bump:major": "npm version --no-git-tag-version major",
"build-docs": "npx ./scripts/build-docs.js",
"release": "npm run bump:patch && npm run build && npm run build-docs && npx ./scripts/release.js",
"postinstall": "npx ./scripts/pre-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turbobabr/easyeda-ibom-extension.git"
},
"author": "Andrey Shakhmin",
"license": "MIT",
"bugs": {
"url": "https://github.com/turbobabr/easyeda-ibom-extension/issues"
},
"homepage": "https://github.com/turbobabr/easyeda-ibom-extension#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"css-loader": "^5.0.1",
"del": "^6.0.0",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-ignore": "^3.0.0",
"gulp-json-editor": "^2.5.4",
"gulp-load-plugins": "^2.0.6",
"gulp-modify-file": "^1.0.1",
"gulp-zip": "^5.0.2",
"html-loader": "^2.1.2",
"klaw-sync": "^6.0.0",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"socket.io": "^3.1.2",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"url-loader": "^4.1.1",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-watch-files-plugin": "^1.1.0"
},
"easy": {
"name": "iBom",
"id": "ibom",
"description": "Embedded Interactive HTML BOM for EasyEDA",
"homepage": "https://github.com/turbobabr/easyeda-ibom-extension#readme",
"username": "turbobabr",
"repo": "easyeda-ibom-extension"
},
"dependencies": {
"d3-path": "^3.0.1",
"date-fns": "^2.19.0",
"lodash": "^4.17.21",
"svg-path-bbox": "^0.2.0",
"svgpath": "^2.3.1"
}
}