-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "nextjs-marketing",
"author": "Zesty.io Platform Inc.",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"prettier:fix": "prettier './src/**/*.js' --write",
"clear-all": "rimraf ./node_modules ./.next",
"sync": "node lib/zesty/sync.js",
"postinstall": "zesty init && npm run sync"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.8.3",
"@zesty-io/live-editor": "^2.0.24",
"@zesty-io/react-autolayout": "^1.0.0-beta.6",
"@zesty-io/sdk": "^0.3.0",
"chalk": "^4.1.2",
"next": "^12.0.7",
"node-fetch": "^2.6.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal-image": "^2.6.0",
"react-syntax-highlighter": "^15.5.0",
"react-youtube": "^10.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@zesty-io/cli": "^0.0.4",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^2.0.2",
"cross-env": "^7.0.2",
"execa": "^5.1.1",
"listr": "^0.14.3",
"listr-input": "^0.2.1",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
}
}