-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "le-word",
"version": "1.0.0",
"description": "wordle clone",
"scripts": {
"clean": "rimraf dist",
"prebuild": "yarn run clean",
"build": "parcel build src/index.html",
"prestart": "yarn run clean",
"start": "parcel src/index.html",
"test": "echo \"Error: no test specified\"",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
},
"dependencies": {
"prop-types": "^15.8.1",
"random": "^3.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recoil": "^0.6.1",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"autoprefixer": "^10.4.4",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.7",
"parcel": "^2.3.2",
"postcss": "^8.4.12",
"prettier": "^2.6.0",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lopac/wordle.git"
},
"author": "Antonio Lopac",
"license": "ISC",
"bugs": {
"url": "https://github.com/lopac/wordle/issues"
},
"homepage": "https://github.com/lopac/wordle#readme"
}