forked from welovedevs/react-ultimate-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 4.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
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
{
"name": "@wld/developer-profile",
"version": "1.3.22",
"description": "Developer profile for W3D",
"main": "lib/index.js",
"scripts": {
"start": "touch .env.local && sh -ac 'sh .env.${NODE_ENV:-local}; PORT=${PORT:-3000} EXTEND_ESLINT=true BROWSER=none react-scripts start'",
"dev": "yarn start",
"eject": "react-scripts eject",
"test": "echo \"Error: no test specified\" && exit 1",
"package": "rimraf lib && ./node_modules/.bin/babel src/package -d .",
"postpackage": "cp-cli src/package/readme.md readme.md && cp-cli src/package/i18n i18n && cp-cli src/package/assets assets",
"test-build": "rimraf ./test-build && ./node_modules/.bin/babel src -d ./test_build",
"posttest-build": "rimraf ./test_build ./styles ",
"build": "react-scripts build",
"build:messages": "NODE_ENV=production babel ./src >/dev/null",
"serve": "react-scripts build && serve build",
"manage:translations": "node ./translationRunner.js",
"gh-deploy" : "yarn build && gh-pages -d build"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"@material-ui/core": "^4.8.3",
"@wld/ui": "https://github.com/welovedevs/wld-design-system.git#v1.1.6-8",
"formik": "^2.1.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"@date-io/moment": "^1.3.13",
"@formatjs/intl-pluralrules": "^1.5.2",
"@formatjs/intl-relativetimeformat": "^4.5.9",
"@material-ui/pickers": "^3.2.9",
"@wld/ui": "https://github.com/welovedevs/wld-design-system.git#v1.1.11",
"chroma-js": "^2.1.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"cp-cli": "^2.0.0",
"downloadjs": "^1.4.7",
"formik": "^2.1.2",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"react-dropzone": "^10.2.1",
"react-emoji-render": "^1.2.1",
"react-images": "^1.1.0-beta.3",
"react-infinite-scroller": "^1.2.4",
"react-intl": "^3.9.3",
"react-jss": "^10.0.4",
"react-slick": "^0.25.2",
"react-sortable-hoc": "^1.11.0",
"react-spring": "9.0.0-beta.33",
"react-use-dimensions": "^1.2.1",
"recharts": "^2.0.0-beta.1",
"respinner": "^3.0.2",
"use-debounce": "^3.3.0",
"uuid": "^3.4.0",
"values.js": "^1.0.3",
"whatwg-fetch": "^2.0.4",
"yup": "^0.28.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-plugin-css-modules-transform": "^1.6.2",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-transform-import-styles": "^0.0.11",
"babel-plugin-react-intl": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"gh-pages": "^2.2.0",
"husky": "^3.1.0",
"lint-staged": "^10.0.8",
"ora": "^4.0.3",
"react-intl-translations-manager": "^5.0.3",
"react-scripts": "^3.4.1",
"readline-sync": "^1.4.10",
"rimraf": "^3.0.0",
"serve": "^11.3.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run test-build --scripts-prepend-node-path && lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx|scss)": [
"prettier --loglevel=debug --write"
],
"*.+(ts|tsx)": [
"prettier --loglevel=debug --write"
]
}
}