-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·53 lines (53 loc) · 1.42 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
{
"name": "helloworld-boilerplate-parent",
"description": "This is Smartface's helloworld boilerplate project",
"author": {
"name": "Smartface",
"email": "[email protected]",
"url": "http://smartface.io"
},
"private": true,
"keywords": [
"smartface",
"javascript",
"typescript",
"boilerplate",
"mobile",
"cross-platform",
"native"
],
"dependencies": {
"@smartface/builder": "^0.8.0-rc.3",
"@smartface/marketplace-service": "^1.2.0-beta",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"typescript": "4.2.3"
},
"scripts": {
"build:tsc": "rimraf dist && tsc",
"build:sf": "cross-env ROOT_PATH=$PWD transpiler --standalone",
"build:transpile": "rimraf scripts/generated && yarn run build:sf && yarn run build:tsc",
"watch:tsc": "rimraf dist && tsc -w",
"watch:sf": "rimraf scripts/generated && cross-env ROOT_PATH=$PWD transpiler",
"lint": "eslint .",
"lint:fix": "eslint ./ --fix",
"prettier": "prettier --write ."
},
"devDependencies": {
"@smartface/dispatcher": "^0.7.0",
"@smartface/image-processor": "^1.2.1",
"@smartface/library-reader": "^0.3.0",
"@smartface/tsc-watch": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0"
},
"license": "MIT",
"workspaces": [
"libs/**"
]
}