-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "caravaggio-react",
"version": "1.2.2",
"description": "Caravaggio react library",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"author": "Fabrizio Ruggeri <fabrizio.ruggeri@gmail.com>",
"license": "MIT",
"private": false,
"repository": "github:ramiel/caravaggio-react",
"scripts": {
"clean": "rimraf ./dist",
"build": "yarn clean && NODE_ENV=production rollup -c",
"build-watch": "yarn build -- -w",
"prepare": "yarn build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^4.6.2"
},
"dependencies": {
"@types/react": "^16.9.43"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
}
}