-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
122 lines (122 loc) · 3.99 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "me.laniewski.qilin",
"main": "qpm/src/index.html",
"version": "0.4.0-alpha",
"private": true,
"author": "Łaniewski Bartosz <bartosz@laniewski.com> (https://laniewski.me/)",
"license": "MIT",
"description": "Text editor for exact sciences with built-in LaTeX/KaTeX/AsciiMath support",
"repository": {
"type": "git",
"url": "https://github.com/qilin-editor/qilin-app.git"
},
"bugs": {
"url": "https://github.com/qilin-editor/qilin-app/issues"
},
"chromium-args": "--mixed-context --enable-experimental-web-platform-features",
"window": {
"min_height": 600,
"min_width": 1000,
"title": "Qilin",
"frame": false
},
"dependencies": {
"classnames": "2.2.6",
"highlight.js": "latest",
"keymage": "^1.1.3",
"markdown-it": "8.4.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^5.0.2",
"markdown-it-block-embed": "^0.0.3",
"markdown-it-emoji": "^1.4.0",
"markdown-it-maths": "1.0.8",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-table-of-contents": "^0.4.3",
"markdown-it-task-lists": "^2.1.1",
"mobx": "5.8.0",
"mobx-react": "5.4.3",
"opn": "5.4.0",
"prop-types": "15.6.2",
"qilin-components": "0.0.133",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-router-dom": "4.3.1",
"react-split-pane": "0.1.85",
"typography": "0.16.18",
"typography-theme-github": "^0.16.18"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "9.4.5",
"babel-eslint": "10.0.1",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^1.0.0",
"copy-webpack-plugin": "4.6.0",
"css-loader": "2.1.0",
"eslint": "5.12.1",
"eslint-config-prettier": "3.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "3.2.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^3.0.1",
"flow-bin": "0.91.0",
"html-webpack-plugin": "^3.2.0",
"jest": "23.6.0",
"json-loader": "^0.5.4",
"node-sass": "4.11.0",
"nw": "0.35.5",
"nw-builder": "3.5.7",
"nw-dev": "^3.0.1",
"precss": "^4.0.0",
"prettier": "1.16.0",
"resolve-url-loader": "3.0.0",
"rimraf": "2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "9.10.1",
"stylelint-config-standard": "^18.2.0",
"url-loader": "1.1.2",
"webpack": "4.29.0",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
},
"scripts": {
"nw": "npx nw . --nwjs_build_type=sdk",
"clear": "rimraf build cache qpm/node_modules qpm/src",
"build:prod": "export NODE_ENV=production && npx webpack && npm run build:qpm",
"build:dev": "export NODE_ENV=development && npx webpack --watch",
"build:qpm": "cd qpm && npm install",
"build": "npm run clear && npm run build:prod && node bin/compile",
"start": "npm run clear && npm run build:prod && npm run nw",
"watch": "npm run clear && npm run build:dev & npm run nw",
"lint:scripts": "npx eslint --ext .js --ext .jsx --fix ./src",
"lint:styles": "npx stylelint 'src/styles/**/*.scss' --fix",
"lint": "npm run lint:scripts && npm run lint:styles",
"test:jest": "npx jest",
"test:flow": "npx flow",
"test": "npm run test:flow && npm run lint"
},
"maintainers": [
{
"name": "Bartosz Łaniewski",
"email": "bartosz@laniewski.me",
"web": "https://laniewski.me"
}
]
}