-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.51 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.51 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "XenonText",
"version": "0.2.0",
"description": "シンプルなエディタを駆け出しエンジニアに",
"author": "CDLab",
"main": "main.js",
"scripts": {
"start": "npm run lint && npm run clean && run-p copy:* && run-p css:* && npm run js:dev && npm run dev",
"build": "npm run lint && npm run clean && run-p copy:* && run-p css:* && npm run js:build && npm run package",
"watch": "npm run lint && npm run clean && run-p copy:* && run-p css:* && run-p watch:*",
"dev": "electron dist",
"lint": "eslint --ext .js,.jsx src",
"clean": "rimraf dist build",
"package": "electron-packager dist XenonText --out=build/Release --icon=icon/icon.icns",
"copy:static": "cpx \"src/**/*.{html,png,jpg,svg}\" dist",
"copy:package.json": "cpx \"package.json\" dist",
"watch:static": "cpx -vw \"src/**/*.{html,png,jpg,svg}\" dist",
"js:dev": "webpack --mode development",
"js:build": "webpack --mode production",
"watch:js": "webpack --watch --mode development",
"css:tailwind": "tailwindcss build src/style.css -o dist/style.css",
"icon:mac": "png2icns icon/icon.png -o icon/icon.icns"
},
"homepage": "https://cdlab-sit.github.io/XenonText/",
"repository": {
"type": "git",
"url": "git+https://github.com/cdlab-sit/XenonText.git"
},
"keywords": [
"xenontext",
"editor",
"electron",
"react"
],
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cpx": "^1.5.0",
"electron-packager": "^14.2.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.19.0",
"npm-run-all": "^4.1.5",
"png2icns": "0.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"tailwindcss": "^1.4.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"ace-builds": "^1.4.11",
"electron": "^8.2.5",
"electron-devtools-installer": "^3.1.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-ace": "^8.1.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-resize-panel": "^0.3.5",
"redux": "^4.0.5",
"reselect": "^4.0.0",
"uuid": "^8.3.0"
}
}