-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "guitar-meister",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --coverage",
"test:coverage": "npm test && coveralls < coverage/lcov.info"
},
"dependencies": {
"@types/react": "^17.0.21",
"@types/react-redux": "^7.1.16",
"autoprefixer": "^10.3.1",
"downshift": "^6.1.3",
"framer-motion": "^4.1.17",
"next": "11.0.1",
"next-redux-wrapper": "^7.0.2",
"postcss": "^8.3.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"tailwindcss": "^2.2.4"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^16.4.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.31.1",
"coveralls": "^3.1.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5"
}
}