-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "QSpriteEditor",
"version": "3.0.9",
"main": "app/js/main.js",
"author": "Quxios",
"description": "Spritesheet Config",
"license": "MIT",
"scripts": {
"start": "electron . --dev",
"compile:babel": "babel app -d compiled --copy-files -s -i node_modules,style.less",
"compile": "npm run compile:babel",
"build": "npm run compile && build -w --x64 --ia32",
"build:w64": "npm run compile && build -w --x64",
"build:w32": "npm run compile && build -w --ia32"
},
"dependencies": {
"marked": "^0.3.6",
"mobx": "^3.1.8",
"mobx-react": "^4.1.5",
"pixi.js": "^4.4.4",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-sortable-hoc": "^0.6.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-electron": "^1.4.15",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"electron": "^1.6.5",
"electron-builder": "^17.0.1"
},
"build": {
"directories": {
"app": "compiled"
},
"win": {
"target": "dir",
"icon": "app/imgs/icon.ico"
}
}
}