forked from ryanjones/pcards
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.29 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
{
"scripts": {
"build": "npm run lint && npm run clean && npm run webpack",
"build:dev": "npm run lint && npm run clean && npm run webpack:dev && npm run package:dev",
"webpack": "webpack --progress --colors --config webpack.config.js --output-path ./dist -p",
"webpack:dev": "webpack --progress --colors --config webpack.dev.js --output-path ./dist -p",
"postbuild": "npm run package",
"package": "tfx extension create",
"package:dev": "tfx extension create --overrides-file vss-extension.dev.json --rev-version",
"publish": "tfx extension publish",
"gallery-publish": "tfx extension publish --rev-version",
"clean": "rimraf ./dist && rimraf ./*.vsix",
"lint": "tslint -c tslint.json 'src/*.ts'"
},
"devDependencies": {
"cpx": "^1.5.0",
"rimraf": "^2.6.1",
"tfx-cli": "^0.5.10",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.8.3",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@types/jquery": "^2.0.34",
"@types/q":"1.5.2",
"handlebars":"^4.2.0",
"handlebars-loader": "^1.7.1",
"office-ui-fabric-js": "^1.4.0",
"vss-web-extension-sdk": "^5.141.0"
},
"name": "pcards",
"private": true,
"version": "0.0.0"
}