-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.38 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.38 KB
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
{
"name": "app-name",
"version": "1.0.0",
"private": true,
"description": "App Description",
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"deploy:master": "node scripts/deployMaster.js",
"start": "next start",
"lint": "eslint ./src --ext .js,.jsx --cache",
"lint:fresh": "eslint",
"lint:fix": "eslint ./src --ext .js,.jsx --cache --fix",
"lint:ci": "eslint ./src --ext .js,.jsx",
"test": "jest --coverage",
"test:ci": "jest --coverage --maxWorkers=2",
"test:watch": "jest --watch --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masterborn/"
},
"license": "ISC",
"homepage": "https://github.com/masterborn/",
"dependencies": {
"@contentful/rich-text-html-renderer": "^15.4.0",
"@contentful/rich-text-react-renderer": "^15.2.0",
"@formcarry/react": "^1.0.3",
"@reduxjs/toolkit": "^1.6.1",
"@sentry/nextjs": "6.7.2",
"axios": "0.21.1",
"contentful": "^8.5.8",
"framer-motion": "^4.1.17",
"next": "11.0.1",
"next-compose-plugins": "2.2.1",
"next-svgr": "0.0.2",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "3.17.2",
"react-redux": "^7.2.4",
"react-scroll": "^1.8.3",
"styled-components": "5.3.0",
"swiper": "6.8.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@masterborn/eslint-config": "0.0.9",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"babel-plugin-styled-components": "1.12.0",
"eslint": "7.29.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "6.0.0",
"jest": "27.0.5",
"jest-styled-components": "7.0.4",
"prettier": "2.3.1",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0"
}
}