-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "soberia.ir",
"version": "1.1.1",
"private": true,
"dependencies": {
"@soberia/matchmoji": "^1.1.2",
"@types/node": "^18.16.16",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"babel-plugin-prismjs": "^2.1.0",
"markdown-to-jsx": "^7.2.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18"
},
"scripts": {
"prestart": "./bin/main.sh --blog-reference-generator",
"start": "react-app-rewired start",
"build": "./bin/main.sh --production-builder",
"eject": "react-app-rewired eject"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"bracketSpacing": false,
"jsxBracketSameLine": true,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "none"
},
"browserslist": {
"production": [
"> 0.2% and supports es6-module",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config-overrides-path": "./bin/config-overrides.js"
}