-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "@prodo-ai/snoopy",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/prodo-ai/snoopy",
"description": "Immediate feedback on your React components, as you develop.",
"repository": "github:prodo-ai/snoopy",
"bugs": "https://github.com/prodo-ai/snoopy/issues",
"private": true,
"scripts": {
"clean": "wsrun --exclude-missing --serial clean",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"build:prod": "tsc --build tsconfig.prod.json",
"test": "wsrun --exclude-missing --serial test",
"lint": "wsrun --exclude-missing --serial lint",
"postinstall": "patch-package",
"prelerna:publish": "yarn clean && yarn build:prod",
"lerna:publish": "lerna publish"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"lerna": "^3.13.4",
"patch-package": "^6.1.2",
"postinstall-postinstall": "^2.0.0",
"prettier": "^1.17.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1",
"wsrun": "^3.6.5"
}
}