-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
{
"name": "popcorn-time-site",
"version": "0.1.0",
"private": false,
"description": "#New frontend website for popcorn-time",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"coverage": "jest --coverage",
"lint:fix": "eslint . --fix",
"heroku-postbuild": "yarn build"
},
"dependencies": {
"next": "9.5.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-truncate": "^2.4.0",
"styled-components": "^5.1.1",
"styled-system": "^5.1.5",
"styled-tools": "^1.7.2"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-transform-property-literals": "^7.12.13",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.8",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@types/react": "^16.9.46",
"@types/styled-components": "^5.1.2",
"@types/styled-system": "^5.1.10",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"babel-jest": "^26.3.0",
"babel-plugin-styled-components": "^1.11.1",
"cz-conventional-changelog": "3.2.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"husky": "^4.2.5",
"jest": "^26.3.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix"
]
}
}