-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "composable-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "parcel public/index.html",
"build": "rm -rf dist && parcel build --no-scope-hoist public/index.html",
"publish": "surge dist playground.ramblingenzy.me",
"prepare": "husky install",
"postinstall": "patch-package"
},
"browserslist": {
"production": [
"since 2017-06"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.(js|css|json|md)": "prettier --write"
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"eventemitter3": "^4.0.7",
"localforage": "^1.9.0",
"lodash": "^4.17.21",
"prismjs": "^1.24.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-simple-code-editor": "^0.11.0",
"sucrase": "^3.18.1",
"zustand": "^3.5.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-async-do-expressions": "^7.14.5",
"@babel/plugin-proposal-do-expressions": "^7.14.5",
"@babel/plugin-proposal-partial-application": "^7.14.5",
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"parcel": "^2.0.0-beta.2",
"patch-package": "^6.4.7",
"prettier": "^2.3.1",
"surge": "^0.23.0"
}
}