-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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": "react-awesome-typography",
"version": "1.2.0",
"description": "A react component to fix typo misspellings and optical align words to the left text column side",
"keywords": [
"react",
"typography",
"optical",
"align",
"awesome typo",
"text"
],
"main": "dist/index.js",
"directories": {
"src": "src",
"dist": "dist"
},
"repository": "https://github.com/Coderwelsch/react-awesome-typography",
"author": "Coderwelsch, Joseph Ribbe",
"license": "MIT",
"private": false,
"scripts": {
"install": "yarn build",
"build": "tsc --outDir dist && yarn build:sass",
"build:sass": "node_modules/.bin/sass src:dist",
"clear-lib": "rm -rf dist && rm -rf lib",
"start": "tsc --watch & yarn --cwd editor start",
"test": "jest",
"test:watch": "jest --watch",
"predeploy": "yarn build"
},
"peerDependencies": {
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"jest-environment-jsdom": "^28.1.0",
"sass": "^1.52.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.9",
"jest": "^28.1.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}