This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.52 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
{
"name": "sn-ultimate-editor",
"version": "3.0.0",
"homepage": "./",
"scripts": {
"dev": "yarn start",
"start": "BROWSER=none react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"analyze": "react-scripts build && source-map-explorer 'build/static/js/*.js'",
"upgradeDeps": "yarn upgrade-interactive"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@standardnotes/component-relay": "^2.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"react-usestateref": "^1.0.8",
"rich-markdown-editor": "^11.21.3",
"sn-components-api": "^1.2.8",
"sn-stylekit": "^5.2.20",
"style-loader": "^3.3.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"assert": "^2.0.0",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"source-map-explorer": "^2.5.2"
},
"browserslist": {
"production": [
"last 2 versions",
"last 1 year",
"not dead",
"not IE 11",
"not op_mini all",
"last 3 Android version",
"last 3 iOS version",
"last 3 Electron version",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"sn": {
"main": "build/index.html"
}
}