-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2 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
{
"name": "hason-the-tool",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"ace-builds": "^1.4.12",
"classnames": "^2.2.6",
"dayjs": "^1.10.4",
"deepdash-es": "^5.3.5",
"dotenv": "^8.2.0",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-ace": "^9.3.0",
"react-dom": "^17.0.1",
"react-focus-lock": "^2.5.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-splitter-layout": "^4.0.0",
"react-transition-group": "^4.4.1",
"recoil": "^0.1.3",
"recoilize": "^1.0.0",
"sanitize-html": "^2.3.2",
"typescript": "^4.2.3",
"universal-ga": "^1.2.0",
"web-vitals": "^1.1.0"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.34",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"autoprefixer": "^9.8.6",
"eslint": "^7.22.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.22.0",
"postcss": "^8.1.14",
"postcss-cli": "^8.3.0",
"tailwindcss": "^2.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint -c .eslintrc.js --ext .tsx,.jsx,.ts,.js src/",
"test": "react-scripts test",
"tailwind:css": "tailwind build src/assets/tailwind.css -c tailwind.config.js -o src/assets/main.css",
"watch:css": "postcss src/assets/tailwind.css -o src/assets/main.css"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}