forked from Azure/azure-functions-ux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 997 Bytes
/
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
{
"name": "azure-functions-ux-build",
"version": "0.0.0",
"scripts": {
"start": "concurrently npm:start:*",
"start:react": "cd client-react && npm run start",
"start:angular": "cd client && npm run watch",
"start:server": "cd server && npm run start:topdev",
"postinstall": "node child-install.js"
},
"devDependencies": {
"concurrently": "^4.1.2",
"gulp": "^4.0.2",
"gulp-inline-source": "^4.0.0",
"gulp-prompt": "^1.2.0",
"husky": "^1.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1"
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 140,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"private": true,
"engines": {
"yarn": "NO LONGER USED - Please use npm"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.*(ts|tsx)\""
}
},
"dependencies": {
"recursive-install": "^1.4.0"
}
}