-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 4.47 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "webruster-resume",
"version": "1.0.0",
"private": true,
"homepage": "https://krishnakishore.tk",
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"test": "jest --watch",
"test:ci": "jest --ci --reporters='default' --reporters='./.github/github-actions-reporter'",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless",
"start": "next start -p 3000",
"lint": "npm run lint:code && npm run lint:styles",
"lint:fix": "npm run lint:code:fix && npm run lint:styles:fix",
"lint:code": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:code:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"lint:styles": "stylelint ./**/*.scss",
"lint:styles:fix": "stylelint --fix ./**/*.scss",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s",
"icons": "svgr --typescript --memo --icon --replace-attr-values '#fff=currentColor' --template icons/icon-template.js ./icons/svg --out-dir src/icons",
"prepare": "husky install"
},
"dependencies": {
"camelcase": "^6.2.0",
"framer-motion": "^2.8.0",
"next": "^11.1.0",
"next-pwa": "5.6.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.2",
"react-infinite-scroll-component": "^6.1.0",
"react-intersection-observer": "^8.32.0",
"react-markdown": "4.3.1",
"react-share": "^4.4.0",
"react-syntax-highlighter": "^15.4.3",
"reading-time": "^1.3.0",
"sitemap": "^7.0.0"
},
"devDependencies": {
"@cypress/react": "^5.9.4",
"@cypress/webpack-dev-server": "^1.4.0",
"@endemolshinegroup/cz-github": "^2.0.0",
"@next/eslint-plugin-next": "^11.1.0",
"@svgr/cli": "^5.5.0",
"@testing-library/react": "^12.0.0",
"@types/chai": "^4.2.21",
"@types/enzyme": "^3.10.9",
"@types/expect": "^24.3.0",
"@types/jest": "^27.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "16.3.3",
"@types/react": "17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-syntax-highlighter": "^13.5.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"autoprefixer": "^10.3.1",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cypress": "^8.3.0",
"enzyme": "^3.11.0",
"eslint": "^7.31.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.0",
"jest": "^27.0.1",
"lint-staged": "^11.0.1",
"mocha": "^9.0.3",
"postcss": "^8.3.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.2",
"sass": "^1.35.2",
"start-server-and-test": "^1.13.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-sass-guidelines": "8.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"tailwindcss": "^2.2.4",
"test-jest": "^1.0.1",
"ts-jest": "^27.0.5",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.5",
"webpack": "^5.51.0",
"webpack-dev-server": "^3.11.2"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.(ts|tsx)"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
],
"testPathIgnorePatterns": [
"./.next/",
"./node_modules/"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
}
},
"config": {
"commitizen": {
"path": "@endemolshinegroup/cz-github"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache",
"*.scss": "stylelint",
"*.*": "prettier --check"
}
}