forked from wecode-bootcamp/we-editool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "we-editool",
"version": "1.0.0",
"description": "light-weight, tagless and simple text edit tool!",
"main": "dist/index.js",
"module": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wecode-bootcamp/we-editor.git"
},
"license": "MIT",
"files": [
"dist",
"lib"
],
"scripts": {
"clean": "rm -rf dist lib coverage",
"prebuild": "npm run clean",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest -i",
"test:cov": "jest -i --coverage",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'",
"prettier": "prettier --write './src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@testing-library/react": "13.2.0",
"@types/jest": "27.5.1",
"@types/marked": "4.0.3",
"@types/react": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"eslint": "8.15.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"prettier": "2.6.2",
"rollup": "2.74.1",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-node-externals": "4.0.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.31.2",
"ts-jest": "28.0.3",
"typescript": "4.6.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"marked": "4.0.16",
"node-html-markdown": "1.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.3.1"
}
}