-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.24 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
{
"name": "wombak.xyz",
"description": "Wombak agency website",
"version": "1.0.0",
"author": "Wombak <[email protected]>",
"contributors": [
"Brad Adams <[email protected]>",
"Gabriel Perales <[email protected]>"
],
"private": true,
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"storybook": "start-storybook",
"build-storybook": "build-storybook -c .storybook",
"lint": "eslint ./src/**/*.{ts,tsx}",
"test": "jest"
},
"dependencies": {
"framer-motion": "latest",
"next": "latest",
"polished": "latest",
"react": "^16.13",
"react-dom": "^16.13",
"react-uid": "^2.3.0",
"styled-components": "latest",
"styled-icons": "^10.5.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@babel/preset-react": "latest",
"@babel/preset-typescript": "latest",
"@storybook/addon-info": "latest",
"@storybook/addon-storyshots": "latest",
"@storybook/react": "latest",
"@types/jest": "latest",
"@types/styled-components": "latest",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-eslint": "latest",
"babel-loader": "latest",
"babel-plugin-styled-components": "latest",
"babel-preset-react-app": "latest",
"css-loader": "latest",
"eslint": "latest",
"eslint-config-airbnb": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"husky": "latest",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.5.4",
"jest-styled-components": "latest",
"prettier": "latest",
"pretty-quick": "latest",
"react-docgen-typescript-loader": "latest",
"react-is": "latest",
"react-test-renderer": "latest",
"storybook-addon-jsx": "latest",
"style-loader": "latest",
"ts-loader": "latest",
"typescript": "latest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint",
"pre-push": "npm run test"
}
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
}
}