This repository has been archived by the owner on Sep 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.5 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
{
"name": "react-snake-game",
"author": "Anomaly",
"repository": {
"type": "git",
"url": "https://github.com/anomaly/react-snake-game"
},
"version": "0.1.0",
"description": "A novelty snake game built using React for the new Anomaly website.",
"homepage": "https://anomaly.github.io/react-snake-game",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint example src stories test",
"lint:fix": "tsdx lint --fix example src stories test",
"prettier": "prettier --write '{example,src,stories,test}/**/*.{html,js,jsx,ts,tsx}'",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook --no-manager-cache -p 6006",
"build-storybook": "build-storybook -o storybook-static",
"predeploy": "npm run storybook-build",
"storybook-deploy": "gh-pages -d storybook-static"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"tabWidth": 4
},
"module": "dist/react-snake-game.esm.js",
"size-limit": [
{
"path": "dist/react-snake-game.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-snake-game.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.13.1",
"@size-limit/preset-small-lib": "^4.9.2",
"@storybook/addon-essentials": "^6.1.19",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.1.19",
"@storybook/addons": "^6.1.19",
"@storybook/react": "^6.1.19",
"@storybook/theming": "^6.1.19",
"@types/intrinsic-scale": "^3.0.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-loader": "^8.2.2",
"eslint": "7.20.0",
"eslint-config-react-app": "6.0.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "3.10.1",
"eslint-plugin-unicorn": "^28.0.2",
"gh-pages": "^3.1.0",
"husky": "^5.1.1",
"import-sort-style-eslint": "^6.0.0",
"jest-canvas-mock": "^2.3.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"size-limit": "^4.9.2",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "4.1.*"
},
"resolutions": {
"eslint": "7.20.0"
},
"dependencies": {
"intrinsic-scale": "^3.0.4",
"react-resize-detector": "^6.6.0"
}
}