-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.15 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "emo-motion-editor",
"version": "1.0.1",
"description": "Motion editor application for BOCCO Emo",
"keywords": [
"Emo",
"BOCCO",
"Yukai",
"Engineering",
"Motion",
"Editor",
"Robotics",
"Robot"
],
"author": "Yukai Engineering Inc. <[email protected]> (http://www.ux-xu.com/)",
"contributors": [
"Hiroki USUBA <[email protected]> (http://mimorisuzuko.github.io/)"
],
"license": "MIT",
"main": "app/index.js",
"build": {
"appId": "com.ux-xu.emo-motion-editor",
"productName": "Emo Motion Editor",
"files": [
"app/"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": {
"target": "zip"
}
},
"win": {
"target": {
"target": "portable"
}
},
"linux": {
"target": {
"target": "AppImage"
}
}
},
"scripts": {
"build:pug": "./node_modules/.bin/pug --hierarchy -o app/dst/ src/main/",
"build:js": "./node_modules/.bin/webpack --mode production",
"build": "./node_modules/.bin/npm-run-all 'build:*'",
"watch:pug": "npm run build:pug -- -w",
"watch:js": "./node_modules/.bin/webpack-dev-server --mode development",
"watch:start": "./node_modules/.bin/cross-env NODE_ENV=development yarn start",
"watch": "./node_modules/.bin/npm-run-all --parallel 'watch:*'",
"start": "./node_modules/.bin/electron .",
"dist": "./node_modules/.bin/electron-builder -mwl && yarn pack --out dist/%s-%v.tgz"
},
"devDependencies": {
"@babel/compat-data": "^7.16.4",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-json-strings": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@emotion/css": "^11.5.0",
"autobind-decorator": "^2.4.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"color": "^4.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"electron": "16.0.2",
"electron-builder": "^22.14.5",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"fs-extra": "^10.0.0",
"immutable": "^4.0.0",
"keymaster": "^1.6.2",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"pug-cli": "^1.0.0-alpha6",
"rc-slider": "^9.7.4",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-custom-scrollbars-2": "^4.4.0",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"react-select": "^5.2.1",
"react-toastify": "^8.1.0",
"redux": "^4.1.2",
"redux-actions": "^2.6.5",
"redux-batched-actions": "^0.5.0",
"style-loader": "^3.3.1",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"dependencies": {
"electron-store": "^8.0.1"
},
"packageManager": "[email protected]"
}