-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.19 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "spfx-employee-performance-app",
"version": "1.0.0",
"private": false,
"engines": {
"node": ">=0.10.0"
},
"author": {
"name": "Arturo De la Garza",
"url": "http://arturodelagarza.com"
},
"keywords": [
"react",
"spfx",
"office-ui-fabric",
"pnp",
"msgraph"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agzertuche/spfx-employee-performance-app.git"
},
"bugs": {
"url": "https://github.com/agzertuche/spfx-employee-performance-app/issues"
},
"homepage": "https://github.com/agzertuche/spfx-employee-performance-app#readme",
"scripts": {
"package": "gulp bundle --ship && gulp package-solution --ship",
"precommit": "lint-staged",
"lint": "tslint-config-prettier-check ./config/tslint.json",
"build": "gulp bundle",
"clean": "gulp clean",
"test": "gulp test"
},
"lint-staged": {
"*.{json,css,scss,md}": [
"prettier --write",
"git add"
],
"*.{js,ts,tsx}": [
"tslint --fix",
"prettier --single-quote --parser typescript --write",
"git add"
]
},
"dependencies": {
"@microsoft/sp-core-library": "1.5.1",
"@microsoft/sp-office-ui-fabric-core": "1.5.1",
"@microsoft/sp-webpart-base": "1.5.1",
"@pnp/common": "^1.1.4",
"@pnp/logging": "^1.1.4",
"@pnp/odata": "^1.1.4",
"@pnp/sp": "^1.1.4",
"@types/es6-promise": "0.0.33",
"@types/react": "15.6.6",
"@types/react-dom": "15.5.6",
"@types/webpack-env": "1.13.1",
"chart.js": "^2.7.2",
"office-ui-fabric-react": "5.8.0",
"react": "15.6.2",
"react-chartjs-2": "^2.7.4",
"react-dom": "15.6.2"
},
"devDependencies": {
"@microsoft/microsoft-graph-types": "^1.4.0",
"@microsoft/sp-build-web": "1.5.1",
"@microsoft/sp-module-interfaces": "1.5.1",
"@microsoft/sp-webpart-workbench": "1.5.1",
"@types/chai": "3.4.34",
"@types/mocha": "2.2.38",
"ajv": "~5.2.2",
"gulp": "~3.9.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"webpack-bundle-analyzer": "^2.13.1"
}
}