-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.28 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.28 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
76
{
"dependencies": {
"@glidejs/glide": "^3.4.1",
"@typeform/embed": "^1.1.6",
"classnames": "^2.3.1",
"lazysizes": "^5.3.2",
"next": "10.0.5",
"phosphor-react": "^1.2.1",
"polished": "^4.0.5",
"pretty-scatter": "^0.0.4",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-typist": "2.0.5",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@svgr/webpack": "^5.5.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-unicorn": "^26.0.1",
"file-loader": "^6.2.0",
"fluent-ffmpeg": "^2.1.2",
"husky": "^6.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"lint-staged": "^10.5.4",
"next-compose-plugins": "^2.2.1",
"next-optimized-images": "^2.6.2",
"next-videos": "^1.4.0",
"prettier": "2.2.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.0",
"pretty-bytes": "^5.6.0",
"puppeteer": "^5.5.0",
"responsive-loader": "^2.3.0",
"sharp": "^0.28.1",
"url-loader": "^4.1.1",
"webp-loader": "^0.6.0",
"yargs": "^16.2.0"
},
"license": "ISC",
"name": "commit.dev",
"scripts": {
"build": "next build && next export",
"deploy": "npm run build && git add docs && git commit -m \"Staging deployment @`date +'%Y-%m-%d'`\" && git push origin main",
"dev": "next dev",
"e2e": "jest --config .e2e/jest.config.js",
"format": "prettier-eslint --eslint-config-path ./.eslintrc.js --write $PWD'/**/*.js'",
"lint": "eslint .",
"convert-video": "./scripts/convert-video.js --dest static/videos",
"start": "next start",
"prepare": "husky install"
},
"version": "0.1.0",
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}