-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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
{
"name": "reddit-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:styles": "stylelint 'src/**/*.css'",
"lint:scripts": "eslint src/ --ext .jsx,.jsx",
"test": "jest --watch",
"test:ci": "CI=true jest --ci --coverage",
"test:coverage": "jest --coverage"
},
"dependencies": {
"clsx": "^1.1.1",
"interweave": "^12.5.0",
"next": "^9.5.5",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-content-loader": "^5.1.2",
"react-dom": "^16.13.1",
"relative-date": "^1.1.3",
"remark": "^12.0.1",
"remark-html": "^13.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-module-resolver": "^4.0.0",
"confusing-browser-globals": "^1.0.9",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jest-dom": "^3.2.3",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-testing-library": "^3.9.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.2",
"lint-staged": "^10.4.0",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-nested": "^4.2.3",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"stylelint": "^13.7.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"tailwindcss": "^1.9.3"
},
"engines": {
"node": ">=12"
}
}