-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "startup-nextjs-theme",
"version": "0.1.0",
"engines": {
"node": ">=14 <16",
"npm": "~6"
},
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"export": "next export",
"analyze": "ANALYZE=true next build",
"analyze:server": "BUNDLE_ANALYZE=server next build",
"analyze:browser": "BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@stackbit/cli": "^0.1.14",
"@stackbit/components": "^0.1.56",
"axios": "^0.18.0",
"classnames": "^2.3.1",
"jose": "^3.14.3",
"markdown-to-jsx": "^7.1.3",
"next": "^11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"sourcebit": "^0.11.0",
"sourcebit-source-filesystem": "^0.1.6",
"sourcebit-target-next": "^0.7.1",
"tailwindcss": "^2.2.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.2",
"autoprefixer": "^10.2.6",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"postcss": "^8.3.5",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.6",
"prettier": "^2.3.2",
"sass": "^1.40.0",
"webpack-bundle-analyzer": "^4.4.2"
},
"description": "A Nextjs page builder, component library and data source mapper all in one.",
"main": "next.config.js",
"license": "MIT"
}