forked from JaredReisinger/react-crossword
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.08 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@dpt/react-crossword",
"homepage": "https://github.com/DailyPrincetonianTech/react-crossword",
"version": "5.2.0",
"description": "A flexible, responsive, and easy-to-use crossword component for React apps",
"author": {
"name": "Daily Princetonian Tech Team",
"email": "[email protected]"
},
"keywords": [
"react",
"react-crossword",
"crossword",
"puzzle",
"library"
],
"repository": {
"type": "git",
"url": "https://github.com/DailyPrincetonianTech/react-crossword"
},
"license": "MIT",
"engines": {
"node": ">=18.7.0"
},
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage --collectCoverageFrom='src/**/*.{js,jsx,ts,tsx}'",
"test:dev": "jest --watch",
"lint": "eslint src/**/*.{js,jsx,ts,tsx}",
"stylelint": "stylelint src/**/*.{js,jsx,ts,tsx,css,scss,less}",
"commit": "git-cz",
"#release": "yarn run dist && semantic-release",
"build": "tsc",
"dist": "yarn run clean && yarn run build",
"clean": "rimraf build coverage dist styleguide",
"doc:dev": "styleguidist server",
"doc:build": "styleguidist build",
"doc:deploy": "yarn run doc:build && gh-pages --dist styleguide --branch documentation",
"contributors:add": "all-contributors add",
"contributors:check": "all-contributors check",
"#snyk-protect": "snyk protect",
"#prepare": "yarn run snyk-protect",
"prepare": "yarn run build",
"prepack": "yarn run build"
},
"files": [
"/dist",
"/src",
"!**/__test__",
"!**/*.test.js"
],
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"{src,docs}/**/*.{js,json,css,jsx,ts,tsx}": [
"stylelint",
"eslint --fix --quiet --ignore-path .gitignore"
]
},
"dependencies": {
"immer": "^9.0.16",
"prop-types": "^15.8.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"all-contributors-cli": "^6.24.0",
"commitizen": "^4.2.6",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"react-styleguidist": "^13.0.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"snyk": "^1.1069.0",
"stylelint": "^14.16.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-prettier": "^2.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"snyk": true
}