-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.84 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
{
"name": "@civet/core",
"version": "1.4.1",
"description": "Civet",
"main": "./lib/index.js",
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.js",
"default": "./lib/index.js"
}
},
"files": [
"lib",
"src"
],
"scripts": {
"build:clean": "rimraf ./lib",
"prebuild": "npm run build:clean",
"build": "babel src -d lib",
"lint": "eslint src --report-unused-disable-directives",
"prepare": "npm run lint && npm run build",
"preversion": "git diff HEAD --name-only --exit-code || (echo -\\> unclean working directory && exit 1)",
"postversion": "cross-env git commit -am$npm_package_version",
"prettify": "prettier --write src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/civet-org/core.git"
},
"keywords": [
"civet",
"react",
"data",
"rest"
],
"author": "Aaron Burmeister",
"license": "MIT",
"bugs": {
"url": "https://github.com/civet-org/core/issues"
},
"homepage": "https://civet.js.org/",
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.18.6",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5"
},
"peerDependencies": {
"react": ">=18.0",
"react-dom": ">=18.0"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"object-hash": "^3.0.0",
"prop-types": "^15.8.1",
"uuid": "^9.0.1"
}
}