-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.96 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-essential-ui",
"version": "0.0.6",
"description": "A react component library to quickly spin up good looking UI that is highly customizable. Ideal for projects requiring quick iterations like hackathons, building MVPs or prototypes.",
"main": "dist/main.js",
"bin": "dist/index.js",
"author": "Navaneeth V",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"build": "rimraf ./dist && tsc",
"test": "jest --no-cache",
"test:watch": "jest --watch",
"lint": "prettier --check .",
"publish:np": "np",
"prepublishOnly": "yarn build",
"format": "prettier --write .",
"clean:temp": "rimraf ./tests/temp/*.{tsx,jsx,css}"
},
"files": [
"dist/",
"README.md",
"package.json"
],
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/rimraf": "^3.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"husky": "4",
"jest": "^26.6.3",
"lint-staged": ">=10",
"np": "^7.4.0",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"simple-git-hooks": ">=2.0.3",
"ts-jest": "^26.5.4",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"keywords": [
"css",
"styling"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Catastrophe0123/react-essential-ui.git"
},
"bugs": {
"url": "https://github.com/Catastrophe0123/react-essential-ui/issues"
},
"homepage": "https://github.com/Catastrophe0123/react-essential-ui#readme",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged"
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true,
"jsxBracketSameLine": true
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
},
"jest": {
"globals": {
"ts-jest": {
"babelConfig": {
"env": {
"test": {
"plugins": [
"syntax-dynamic-import",
"dynamic-import-node"
]
}
}
}
}
}
}
}