-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.79 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
{
"name": "react-spfx",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "gulp bundle",
"build-ship": "gulp bundle --ship",
"package-ship": "gulp package-solution --ship",
"clean": "gulp clean",
"test": "gulp test",
"start": "cross-env NODE_NO_HTTP2=1 gulp serve",
"lint": "tslint -c tslint.json 'src/**/*.{tsx,ts}'",
"lint-fix": "tslint -c tslint.json 'src/**/*.{tsx,ts}' --fix",
"deploy-build": "run-s lint clean build-ship package-ship"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"dependencies": {
"@microsoft/sp-core-library": "~1.1.0",
"@microsoft/sp-lodash-subset": "~1.1.0",
"@microsoft/sp-office-ui-fabric-core": "~1.4.0-0",
"@microsoft/sp-webpart-base": "~1.1.0",
"antd": "2.13.14",
"axios": "^0.18.0",
"prop-types": "^15.6.2",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-table": "^6.8.6",
"store2": "^2.7.1"
},
"devDependencies": {
"@microsoft/sp-build-web": "~1.1.0",
"@microsoft/sp-module-interfaces": "~1.1.0",
"@microsoft/sp-webpart-workbench": "~1.1.0",
"@types/axios": "^0.14.0",
"@types/chai": "3.4.34",
"@types/es6-promise": "0.0.33",
"@types/mocha": "2.2.38",
"@types/prop-types": "^15.5.8",
"@types/react": "0.14.57",
"@types/react-addons-shallow-compare": "0.14.22",
"@types/react-addons-test-utils": "0.14.23",
"@types/react-addons-update": "0.14.20",
"@types/react-dom": "0.14.23",
"@types/react-table": "^6.7.21",
"@types/webpack-env": "1.13.1",
"ajv": "~5.2.2",
"cross-env": "^5.2.0",
"gulp": "~3.9.1",
"husky": "^1.3.1",
"npm-run-all": "^4.1.5",
"tslint": "4.5.1",
"typescript": "2.9.2",
"typescript-tslint-plugin": "^0.3.0"
}
}