-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 931 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
{
"name": "prodo",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "set -ex; yarn workspace @prodo/devtools-core build; tsc --build",
"build:watch": "yarn build --watch",
"build:babel:watch": "yarn workspace @prodo/devtools-core build:babel --watch",
"clean": "wsrun clean",
"test": "wsrun --serial --exclude-missing test",
"lint": "wsrun --serial --exclude-missing lint",
"verify": "set -ex; yarn install; yarn build; yarn test; yarn lint"
},
"workspaces": [
"examples/*",
"packages/*",
"docs/"
],
"devDependencies": {
"firebase-tools": "^7.3.2",
"lerna": "^3.16.4",
"prettier": "^1.17.1",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.1",
"wsrun": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}