-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.48 KB
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
{
"name": "react-app-notifier",
"version": "0.1.0",
"license": "MIT",
"description": "React app notification library",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"src"
],
"private": false,
"repository": "https://github.com/carlchrhaensel/react-app-notifier",
"scripts": {
"prebuild": "npx rimraf dist",
"rollup-watch": "rollup -c -w",
"build": "npm run prebuild && rollup -c",
"prettier": "prettier --write src"
},
"keywords": [
"react",
"typescript",
"rollup"
],
"author": "carlchrhaensel",
"devDependencies": {
"@babel/core": "^7.17.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@rollup/plugin-url": "^7.0.0",
"@types/react": "^18.0.18",
"@types/uuid": "^8.3.4",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.4",
"postcss": "^8.4.12",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.67.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.54.8",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^8.3.2"
}
}