forked from PatientOrderSets/Dante
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@babel/runtime": "^7.13.10",
"@tailwindcss/typography": "^0.4.0",
"gray-matter": "^4.0.2",
"next": "^12.2",
"next-mdx-remote": "^1.0.0",
"next-remote-watch": "0.2.0",
"prism-react-renderer": "^1.2.0",
"prismjs": "^1.15.0",
"react-live": "^2.2.3",
"react-powerplug": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/helper-regex": "^7.10.5",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@emotion/cache": "^10.0.14",
"@emotion/core": "^10.0.10",
"@storybook/addon-docs": "^6.2.3",
"@storybook/react": "^6.2.3",
"autoprefixer": "^10.2.5",
"lerna": "^4.0.0",
"postcss": "^8.2.9",
"react": "^17.0.2",
"react-dev-utils": "^11.0.4",
"react-dom": "^17.0.2",
"tailwindcss": "^2.1.1"
},
"resolutions": {
"prosemirror-model": "^1.18.1",
"prosemirror-view": "^1.27.0",
"prosemirror-state": "^1.4.1"
},
"scripts": {
"stories": "start-storybook -p 5555",
"dev": "next -p 3001",
"dev:watch": "next-remote-watch ./posts",
"build": "next build",
"start": "next start",
"deploy": "vercel --prod",
"publish_d3": "lerna publish --force-publish=dante3",
"publish_d2": "lerna publish --force-publish=dante2",
"dante2_build": "lerna run build --scope Dante2 --stream",
"dante3_build": "lerna run build --scope dante3 --stream"
}
}