-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.35 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
{
"name": "waldorf-camp-hr",
"private": true,
"author": "Matija Marohnić <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10 <17"
},
"scripts": {
"fetch-gallery-images": "node scripts/fetch-gallery-images.js",
"predev": "yarn fetch-gallery-images",
"dev": "next",
"test": "jest",
"prebuild": "yarn fetch-gallery-images",
"build": "next build && next export"
},
"dependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-flow": "^7.8.3",
"@mdx-js/loader": "^1.5.7",
"@next/mdx": "^9.2.2",
"@silvenon/remark-smartypants": "^0.1.1",
"@types/fs-extra": "^9.0.8",
"babel-plugin-date-fns": "^2.0.0",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-polished": "^1.1.0",
"babel-plugin-preval": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"chalk": "^3.0.0",
"classnames": "^2.2.6",
"cloudinary": "^1.19.0",
"cloudinary-core": "^2.8.1",
"date-fns": "^2.10.0",
"dotenv-safe": "^8.2.0",
"fs-extra": "^8.1.0",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.19",
"next": "^9.3.2",
"next-compose-plugins": "^2.2.0",
"ordinal": "^1.0.3",
"polished": "^3.4.4",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-modal": "^3.11.2",
"styled-components": "^5.0.1",
"uuid": "^7.0.1",
"webpack": "^4.41.6",
"yargs": "^15.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.5.0",
"flow-bin": "^0.119.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"pre-commit": "flow && lint-staged",
"pre-push": "yarn test"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
]
},
"ignore": [
"flow-typed/npm/**/*"
]
}
}