-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 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
{
"name": "@dsplay/react-template-utils",
"version": "4.0.0",
"main": "dist/dsplay-react-template-utils.umd.js",
"module": "src/lib/index.js",
"files": [
"dist"
],
"scripts": {
"start": "react-scripts start",
"build-examples": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"linter": "eslint --ext=js --ext=jsx src",
"linter:fix": "eslint --ext=js --ext=jsx src --fix",
"eject": "react-scripts eject",
"prebuild": "npm run linter",
"build": "rimraf dist && NODE_ENV=production webpack --mode production",
"prepublish": "npm run build",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/plugin-transform-modules-umd": "^7.18.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"babel-eslint": "^10.1.0",
"copy-webpack-plugin": "^6.4.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"node-sass": "^4.14.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "^4.0.3",
"rimraf": "^3.0.2",
"webpack-cli": "^4.10.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@dsplay/template-utils": "^1.2.5",
"easyqrcodejs": "^4.4.13",
"use-fit-text": "^2.4.0"
},
"peerDependencies": {
"react": "^17.x",
"react-dom": "^17.x"
}
}