forked from goodjoblife/GoodJobShare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.13 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
{
"name": "GoodJobShare",
"version": "0.1.0",
"main": "lib/index.js",
"scripts": {
"start": "razzle start",
"start-production": "NODE_ENV=production node build/server.js",
"lint": "eslint src/ razzle.config.js",
"lint-staged": "lint-staged",
"stylelint": "stylelint \"src/**/*.css\"",
"testonly": "razzle test --env=jsdom",
"test": "npm run lint && npm run stylelint && npm run testonly",
"build": "razzle build",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.css": [
"stylelint --fix"
]
},
"jest": {
"moduleNameMapper": {
"^actions(.*)": "<rootDir>/src/actions$1",
"^apis(.*)": "<rootDir>/src/apis$1",
"^common(.*)": "<rootDir>/src/components/common$1",
"^images(.*)": "<rootDir>/src/components/images$1",
"^constants(.*)": "<rootDir>/src/constants$1",
"^contexts(.*)": "<rootDir>/src/contexts$1",
"^graphql(.*)": "<rootDir>/src/graphql$1",
"^hooks(.*)": "<rootDir>/src/hooks$1",
"^selectors(.*)": "<rootDir>/src/selectors$1",
"^utils(.*)": "<rootDir>/src/utils$1"
}
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"autoprefixer": "7.1.1",
"eslint": "4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^1.14.2",
"redux-logger": "^2.7.4",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^4.0.0",
"stylelint-prettier": "^1.0.6"
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.3",
"@fortawesome/fontawesome-free-solid": "^5.0.6",
"@fortawesome/react-fontawesome": "^0.0.17",
"airbnb-prop-types": "^2.15.0",
"classnames": "^2.2.5",
"date-fns": "^2.30.0",
"express": "^4.17.3",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"marked": "^0.3.6",
"path": "^0.12.7",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^3.0.0",
"postcss-simple-vars": "^4.1.0",
"prop-types": "^15.6.0",
"qs": "^6.7.3",
"ramda": "^0.23.0",
"razzle": "^2.4.0",
"react": "^16.12.0",
"react-autocomplete": "^1.8.1",
"react-dom": "^16.12.0",
"react-facebook-pixel": "^0.1.0",
"react-ga4": "^2.1.0",
"react-helmet": "^5.2.0",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-router-scroll-4": "^1.0.0-beta.1",
"react-scroll": "^1.5.4",
"react-sticky": "^6.0.1",
"react-textarea-autosize": "^4.3.0",
"react-use": "^13.12.2",
"recharts": "^2.8.0",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.1.0",
"reselect": "^3.0.1",
"rollbar": "^2.26.1",
"serialize-javascript": "^3.1.0"
},
"engines": {
"node": ">=14.x"
}
}