-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.87 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
{
"name": "speedy-coder",
"version": "0.1.0",
"private": true,
"homepage": "https://qasim9872.github.io/speedy-coder",
"scripts": {
"prestart": "npm run build:css",
"start": "HOST=0.0.0.0 craco start",
"prebuild": "npm run build:css",
"build": "craco build",
"test": "craco test",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"build:css": "postcss src/assets/styles/tailwind.css -o src/assets/styles/main.css",
"watch:css": "npm run build:css -- -w",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"format": "prettier --write 'src/**/*.{ts,tsx,json}'",
"isready": "npm run format && npm run lint && npm run build"
},
"dependencies": {
"@craco/craco": "^6.1.1",
"@tailwindcss/postcss7-compat": "^2.0.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"autoprefixer": "^9.8.6",
"diff": "^5.0.0",
"gh-pages": "^3.1.0",
"nanotimer": "^0.3.15",
"pino": "^6.7.0",
"pino-pretty": "^4.3.0",
"postcss": "^7.0.35",
"prismjs": "^1.23.0",
"react": "^17.0.1",
"react-awesome-reveal": "3.4.0",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-responsive-modal": "^6.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-share": "^4.4.0",
"react-toastify": "^6.2.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/diff": "^5.0.0",
"@types/faker": "^5.1.6",
"@types/jest": "^26.0.15",
"@types/nanotimer": "^0.3.0",
"@types/node": "^12.0.0",
"@types/pino": "^6.3.4",
"@types/prismjs": "^1.16.3",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"babel-eslint": "10.1.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-react-app": "6.0.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-loader": "4.0.2",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"faker": "^5.4.0",
"postcss-cli": "^8.3.0",
"postcss-loader": "4.0.4",
"prettier": "2.2.0",
"prettier-eslint": "12.0.0",
"prettier-eslint-cli": "5.0.0"
}
}