-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
{
"name": "otter-editor",
"description": "Content editor with declaratively defined content blocks.",
"version": "1.0.18",
"author": "Benjamin Hall and Peter Rundle (https://github.com/keepthatworktoyourself)",
"license": "MIT",
"homepage": "https://github.com/keepthatworktoyourself/otter",
"repository": "github:keepthatworktoyourself/otter",
"files": [
"README.md",
"LICENSE.md",
"dist"
],
"main": "dist/index.js",
"scripts": {
"demo": "parcel demo/index.html",
"clean": "rm -rf dist demo/dist .parcel-cache",
"build": "parcel build --no-source-maps demo/index.html --target default",
"test-prep": "echo '{\"type\": \"module\"}' > src/package.json",
"test-cleanup": "rm src/package.json",
"t": "npm run test-prep; ava -c 1 --verbose src/test/*; npm run test-cleanup",
"tw": "npm run test-prep; ava -c 1 --watch src/test/*; npm run test-cleanup",
"ts": "npm run test-prep; ava -c 1 --watch; npm run test-cleanup",
"test": "npm run t",
"lint": "eslint --fix .",
"lint-check": "eslint .",
"i": "npm run clean && rm -rf node_modules && npm install"
},
"peerDependencies": {
"framer-motion": "6.2.8",
"react": "16.14.0",
"react-dom": "16.14.0"
},
"targets": {
"default": {}
},
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-react": "7.23.3",
"@babel/register": "7.23.7",
"autoprefixer": "10.4.17",
"ava": "6.1.1",
"browserslist": "4.23.0",
"buffer": "6.0.3",
"cssnano": "6.0.3",
"eslint": "8.56.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-react": "7.33.2",
"parcel": "2.11.0",
"postcss": "8.4.35",
"postcss-import": "16.0.1",
"process": "0.11.10",
"tailwindcss": "3.4.1"
},
"dependencies": {
"react-beautiful-dnd": "13.1.1",
"react-quill": "2.0.0",
"simple-react-heroicons": "1.3.15"
}
}