-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.18 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
{
"name": "devkit",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '{components,pages,utils,data,layouts}/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix '{components,pages,utils,data,layouts}/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --check \"{components,data,pages,styles,utils,layouts}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"format:fix": "prettier --write \"{components,data,pages,styles,utils,layouts}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"types:check": "tsc --pretty --noEmit",
"ci": "rm -rf node_modules && yarn install --frozen-lockfile",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"prepare": "yarn run snyk-protect && node ./scripts/prepare.js",
"snyk-protect": "snyk-protect"
},
"dependencies": {
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@ffmpeg/core": "^0.10.0",
"@ffmpeg/ffmpeg": "^0.9.8",
"@snyk/protect": "latest",
"@types/file-saver": "^2.0.4",
"chroma-js": "^2.1.2",
"codemirror": "^5.64.0",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"framer-motion": "^4",
"fuse.js": "^6.4.6",
"next": "^12.0.7",
"next-pwa": "^5.4.1",
"next-seo": "^4.28.1",
"nextjs-progressbar": "^0.0.13",
"react": "17.0.2",
"react-codemirror2": "^7.2.1",
"react-component-export-image": "^1.0.6",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-image-file-resizer": "^0.4.7"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@types/chroma-js": "^2.1.3",
"@types/codemirror": "^5.60.5",
"@types/react": "17.0.31",
"eslint": "<8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"prettier": "2.4.1",
"standard-version": "^9.3.2",
"typescript": "4.4.4"
},
"snyk": true
}