-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
158 lines (158 loc) · 5.06 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "scrappy",
"version": "0.1.0",
"private": true,
"main": "build/electron.js",
"homepage": "/scrappy/",
"scripts": {
"postinstall": "yarn audit",
"tsc-electron": "tsc electron.ts --outDir build",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write src",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prestart": "yarn build",
"start": "yarn tsc-electron && electron .",
"start:slim": "yarn tsc-electron && electron .",
"start:dev": "yarn tsc-electron && cross-env BROWSER=none concurrently \"rescripts start\" \"wait-on tcp:3000 && electron . --serve\"",
"build": "cross-env INLINE_RUNTIME_CHUNK=false rescripts build && yarn tsc-electron",
"test": "rescripts test --watchAll=false",
"eject": "rescripts eject",
"prepack": "yarn build",
"pack": "electron-builder --dir",
"predist": "yarn build",
"dist": "electron-builder",
"storybook": "start-storybook -p 6006 -s public,build",
"build-storybook": "build-storybook -s public,build",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"predeploy:local": "yarn build",
"deploy:local": "shx rm -rf W:/sites/scrappy && shx cp -R ./build W:/sites/scrappy",
"clean": "shx rm -rf dist build coverage results yarn-error.log .eslintcache",
"clean:node": "yarn clean && shx rm -rf node_modules"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@fluentui/react": "^7.157.1",
"@fluentui/react-hooks": "^8.0.0-beta.0",
"@fluentui/react-theme-provider": "^0.18.1",
"@monaco-editor/react": "^4.0.7",
"@prezly/react-promise-modal": "^0.2.0",
"@reduxjs/toolkit": "^1.2.5",
"@rescripts/cli": "^0.0.15",
"@rescripts/rescript-env": "^0.0.12",
"@uifabric/react-cards": "^0.115.9",
"aigle": "^1.14.1",
"bootstrap": "^5.0.0-beta1",
"change-case": "^4.1.2",
"clipboardy": "^2.3.0",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.3.1",
"electron-util": "^0.14.2",
"github-markdown-css": "^4.0.0",
"is-path-inside": "^3.0.2",
"js-file-download": "^0.4.12",
"lodash": "^4.17.20",
"monaco-editor": "^0.21.3",
"node-sass": "4.14.1",
"pouchdb-adapter-idb": "^7.2.2",
"pouchdb-adapter-memory": "^7.2.2",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hotkeys-hook": "^3.0.3",
"react-inlinesvg": "^2.2.2",
"react-markdown": "^5.0.3",
"react-redux": "^7.2.0",
"react-responsive": "^8.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-syntax-highlighter": "^15.4.3",
"remark-gfm": "^1.0.0",
"rxdb": "^9.12.1",
"rxjs": "^6.6.3",
"sass-loader": "^10.1.1",
"styled-components": "^5.2.1",
"ts-key-enum": "^2.0.7",
"typeface-rock-salt": "^1.1.13",
"typescript": "~3.8.2",
"uuid": "^8.3.2",
"validator": "^13.5.2",
"yaml": "^1.10.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-docs": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/node-logger": "^6.1.15",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.1.15",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/change-case": "^2.3.1",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.168",
"@types/node": "^12.0.0",
"@types/pouchdb-adapter-idb": "^6.1.3",
"@types/pouchdb-adapter-memory": "^6.1.3",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"@types/react-responsive": "^8.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.7",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"electron": "^11.2.1",
"electron-builder": "^22.9.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"gh-pages": "^3.1.0",
"husky": "^4.3.8",
"monaco-editor-webpack-plugin": "^2.1.0",
"shelljs": "^0.8.4",
"shx": "^0.3.3",
"wait-on": "^5.2.1"
},
"resolutions": {
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@storybook/react/babel-loader": "8.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"minimist": ">=1.2.3",
"ini": ">1.3.6",
"node-fetch": ">=2.6.1",
"object-path": ">=0.11.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn prettier",
"pre-push": "yarn audit && yarn test"
}
}
}