-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
{
"name": "annotation-errors-e2e",
"private": true,
"version": "0.3.0",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"sideEffects": false,
"scripts": {
"dev": "next dev",
"stackbit-dev": "node ./bin/dev.js",
"build": "next build && next export",
"start": "next start",
"export": "next export",
"validate": "stackbit validate",
"prettier": "prettier --write src",
"prepare": "yarn build:utils && yarn build:annotations && yarn build:sdk && yarn build:cms-core && yarn build:cms-contentful && yarn build:cms-git && yarn build:cms-sanity && yarn build:dev-common && yarn build:dev && yarn build:cli",
"build:utils": "yarn workspace @stackbit/utils build",
"build:annotations": "exit 0 && yarn workspace @stackbit/annotations build",
"build:sdk": "yarn workspace @stackbit/sdk build",
"build:cms-core": "yarn workspace @stackbit/cms-core build",
"build:cms-contentful": "yarn workspace @stackbit/cms-contentful build",
"build:cms-git": "yarn workspace @stackbit/cms-git build",
"build:cms-sanity": "yarn workspace @stackbit/cms-sanity build",
"build:dev-common": "yarn workspace @stackbit/dev-common build",
"build:dev": "yarn workspace @stackbit/dev build",
"build:cli": "yarn workspace @stackbit/cli build"
},
"dependencies": {
"@emotion/cache": "^11.9.3",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.1",
"@stackbit/annotations": "^0.1.2",
"markdown-to-jsx": "^7.1.7",
"next": "^12.2.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"sourcebit": "^0.11.1",
"sourcebit-source-filesystem": "^0.2.0",
"sourcebit-target-next": "^0.8.3"
},
"devDependencies": {
"@stackbit/cli": "^0.2.28",
"@types/react": "^17.0.47",
"autoprefixer": "^10.4.7",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.4",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"description": "A Nextjs page builder, component library and data source mapper all in one.",
"main": "next.config.js",
"license": "MIT",
"workspaces": [
"stackbit/packages/!(annotations)"
],
"packageManager": "[email protected]"
}