-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.98 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
72
{
"name": "inventory-manager",
"productName": "Inventory Manager",
"version": "0.2.5",
"description": "Manage what's in the box",
"main": "dist/main.js",
"scripts": {
"initial-build": "npm run compile && npm run copy-static && npm run rebuild-native",
"clean": "rm -r dist",
"copy-static": "npm run clean && cp -r html dist && cp ./node_modules/react/umd/react.production.min.js ./dist/ && cp ./node_modules/react-dom/umd/react-dom.production.min.js ./dist/ && cp ./node_modules/react-redux/dist/react-redux.min.js ./dist/",
"compile": "npm run lint && npx tsc -p tsconfig.main.production.json && npx webpack --config webpack.renderer.production.js",
"compile-debug": "npm run lint && npx tsc -p tsconfig.main.development.json && npx cross-env NODE_ENV=development npx webpack --config webpack.renderer.development.js --watch",
"start": "npm run copy-static && npm run compile && npx electron .",
"/* debug-main */": "/* Please launch [Main (inventory-manager)] from VSCode debugger after compile-debug */",
"/* debug-renderer */": "/* Please launch [Renderer (inventory-manager)] from VSCode debugger after compile-debug and [Main (inventory-manager)] */",
"rebuild-native": "npx electron-rebuild -f",
"make": "npm run copy-static && npm run compile && rm -rf ./installer/* && node --experimental-modules --experimental-json-modules packager.mjs",
"lint": "eslint --fix --ignore-path .gitignore ."
},
"keywords": [],
"author": {
"name": "Hidekazu Kubota",
"email": "[email protected]"
},
"license": "MPL-2.0",
"devDependencies": {
"@types/async-lock": "^1.1.2",
"@babel/core": "^7.11.6",
"@types/fs-extra": "^9.0.11",
"@types/react": "^16.9.49",
"@types/react-css-modules": "^4.6.2",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"electron": "^11.2.1",
"electron-connect": "^0.6.3",
"electron-packager": "^15.2.0",
"electron-rebuild": "^2.3.4",
"electron-reload-webpack-plugin": "^2.0.4",
"electron-winstaller": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-standardize": "^0.7.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettierx": "^0.14.0",
"source-map-loader": "^1.1.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^5.20.2",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.1.4"
},
"dependencies": {
"async-lock": "^1.3.0",
"babel-plugin-react-css-modules": "^5.2.6",
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^10.0.0",
"git-documentdb": "^0.4.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"style-loader": "^1.2.1",
"typed-intl": "^1.0.3",
"ulid": "^2.3.0"
}
}