-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
83 lines (83 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "blocks-webapp",
"version": "0.3.0",
"private": true,
"scripts": {
"prepare": "husky install",
"start": "craco start",
"test": "cross-env CI=1 craco test",
"test:watch": "craco test",
"precommit": "lint-staged",
"prebuild": "npm test",
"build": "craco build",
"deploy": "cross-env PUBLIC_URL=https://blocks-editor.github.io/blocks npm run build && gh-pages -d build"
},
"dependencies": {
"@dfinity/agent": "^0.10.2",
"@dfinity/candid": "^0.10.2",
"@dfinity/principal": "^0.10.2",
"@monaco-editor/react": "^4.3.1",
"bootstrap": "^5.1.3",
"change-case": "^4.1.2",
"classnames": "^2.3.1",
"fast-json-patch": "^3.1.1",
"file-saver": "^2.0.5",
"firebase": "9",
"monaco-themes": "^0.4.0",
"parse-github-url": "^1.0.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "^2.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-device-detect": "^2.1.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-icons": "^4.3.1",
"react-router-dom": "^6.0.2",
"react-social-icons": "^5.6.1",
"react-textarea-autosize": "^8.3.3",
"react-toastify": "^8.1.0",
"react-tooltip": "^4.2.21",
"require-context": "^1.1.0",
"rete": "^1.4.5",
"rete-area-plugin": "^0.2.1",
"rete-auto-arrange-plugin": "^0.4.0",
"rete-connection-plugin": "^0.9.0",
"rete-history-plugin": "^0.2.2",
"rete-react-render-plugin": "^0.2.1",
"sass": "^1.45.1",
"styled-components": "^5.3.3",
"web-vitals": "^2.1.2"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^6.4.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"cross-env": "^7.0.3",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"jest-fail-on-console": "^2.1.1",
"lint-staged": "^12.1.2",
"react-scripts": "^4.0.3",
"webpack-filter-warnings-plugin": "^1.2.1"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"eslint --max-warnings=0 --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}