-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.64 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.64 KB
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
{
"name": "schemablocks",
"files": [
"dist/*"
],
"repository": "https://github.com/moccadroid/schemablocks",
"license": "ISC",
"version": "1.0.50",
"main": "dist/index.js",
"scripts": {
"build": "rimraf /dist && cpx \"README.md\" \"dist\" -C && node copyPackageJson.js && rollup -c",
"build-watch": "rimraf /dist && node copyPackageJson.js && rollup -c -w",
"start-playground": "cd playground && npm run start",
"i-all": "npm i && cd playground && npm i",
"dev": "npm-run-all --parallel build-watch start-playground",
"publish-npm": "npm run build && npm publish ./dist"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@material-ui/core": "^5.0.0-alpha.25",
"@material-ui/icons": "^5.0.0-alpha.25",
"@material-ui/lab": "^5.0.0-alpha.32",
"cors": "^2.8.5",
"dayjs": "^1.10.4",
"fs-extra": "^9.1.0",
"jsonschema": "^1.4.0",
"react-beautiful-dnd": "^13.0.0",
"react-router-dom": "^5.2.0",
"sharp": "^0.31.1",
"zustand": "^3.4.1"
},
"peerDependencies": {
"firebase": "^8.3.2",
"firebase-admin": "^9.6.0",
"firebase-functions": "^3.13.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.1.0",
"cpx": "^1.5.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"rollup-plugin-peer-deps-external": "^2.2.4"
}
}