-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.73 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
{
"name": "@mikezimm/fps-react",
"version": "1.0.1",
"description": "Library of reusable react components",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "del-cli \"./?(dist|lib)\" && tsc -p ./tsconfig.json && webpack",
"package": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server --config ./webpack.config.cjs",
"clean": "del-cli \"./?(dist|lib)\"",
"lint": "eslint ./src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikezimm/fps-React.git"
},
"keywords": [
"SPFx",
"functions"
],
"author": "Mike Zimmerman",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikezimm/fps-React/issues"
},
"homepage": "https://github.com/mikezimm/fps-React#readme",
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"devDependencies": {
"@types/react": "16.9.51",
"@types/react-dom": "16.9.8",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"css-loader": "^6.7.2",
"del-cli": "^5.0.0",
"eslint": "^8.23.0",
"postcss-loader": "^7.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"files": [
"/lib"
],
"dependencies": {
"@microsoft/sp-property-pane": "^1.15.2",
"@mikezimm/fps-js": "^1.0.13",
"@mikezimm/fps-pnp2": "^1.0.1",
"office-ui-fabric-react": "^7.199.1",
"react": "16.13.1",
"react-dom": "16.13.1"
}
}