-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 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
{
"name": "react-game-of-life",
"version": "0.0.1",
"engines": {
"node": ">=8.10.0"
},
"scripts": {
"preinstall": "node -e 'if(!/yarn\\.js$/.test(process.env.npm_execpath))throw new Error(\"This project uses Yarn.\")'",
"start": "start-storybook",
"format": "node_modules/.bin/prettier --config .prettierrc \"**/*.{js,jsx,ts,tsx,md}\" --write",
"format-test": "node_modules/.bin/prettier --config .prettierrc \"**/*.{js,jsx,ts,tsx,md}\" --check",
"lint": "eslint . --cache --ext js,ts,ts,tsx",
"lint-fix": "npm run lint -- --fix",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "node_modules/.bin/lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,md}": [
"prettier --config .prettierrc -l"
],
"**/*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"license": "ISC",
"author": "Mac Mlynarczyk",
"description": "React component with an intersection observer, written in typescript.",
"dependencies": {
"immer": "5.2.1",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-is": "16.12.0",
"styled-components": "5.0.0-rc.3",
"stylis": "3.5.4",
"use-interval": "1.2.1"
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "7.6.0",
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@storybook/addon-info": "5.2.4",
"@storybook/react": "5.2.4",
"@testing-library/react": "9.3.0",
"@types/jest": "24.0.20",
"@types/styled-components": "4.4.2",
"@typescript-eslint/eslint-plugin": "2.4.0",
"@typescript-eslint/parser": "2.4.0",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"eslint": "6.5.1",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.1.2",
"eslint-plugin-unicorn": "12.1.0",
"husky": "3.0.9",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"prettier": "1.18.2",
"react-docgen-typescript-loader": "3.3.0",
"react-test-renderer": "16.11.0",
"typescript": "3.6.4",
"webpack": "4.41.5"
}
}