-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.05 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
{
"name": "scrabble",
"version": "1.0.0",
"description": "A Scrabble implementation to play during Coronavirus times.",
"private": true,
"scripts": {
"stylelint": "stylelint '**/*.scss'",
"eslint": "eslint . --ext js,jsx,json",
"lint": "yarn stylelint && yarn eslint",
"test": "jest",
"dev": "next dev",
"build": "next build",
"start": "next start",
"firebase": "firebase"
},
"author": "Alex Mendes",
"license": "ISC",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"firebase": "^8.2.1",
"firebase-admin": "^9.4.2",
"next": "^10.0.4",
"normalize.css": "^8.0.1",
"original-url": "^1.2.3",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-transition-group": "^4.4.1",
"sweetalert2": "^10.12.7",
"sweetalert2-react-content": "^3.2.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.7.0",
"@testing-library/user-event": "^12.1.7",
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"firebase-tools": "^9.1.0",
"firestore-jest-mock": "^0.7.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"mock-cloud-firestore": "^0.12.0",
"param-case": "^3.0.4",
"react-test-renderer": "^17.0.1",
"sass": "^1.32.0",
"stylelint": "^13.8.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-selector-bem-pattern": "^2.1.0"
}
}