This repository was archived by the owner on Sep 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "@feedbackfarm/react",
"version": "2.0.12",
"description": "",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx rollup -c",
"start": "npx rollup -c -w",
"prettier": "prettier --write ./src --write ./demo",
"eslint": "eslint --ext .ts --ext .tsx --max-warnings 0 --report-unused-disable-directives ."
},
"author": "Charles-Olivier Demers",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "5.11.0",
"autoprefixer": "^10.4.7",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"node-sass": "^7.0.1",
"postcss": "^8.4.6",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.67.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"dependencies": {
"@feedbackfarm/core": "^1.0.15",
"@popperjs/core": "^2.11.2",
"react-popper": "^2.2.5"
}
}