-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (49 loc) · 1.35 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
{
"name": "owlify",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/henry-ns/owlify.git",
"author": "Henrique Miranda <[email protected]>",
"license": "MIT",
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"eslint --fix",
"yarn test --findRelatedTests"
]
},
"scripts": {
"commit": "./node_modules/cz-customizable/standalone.js",
"test": "cross-env NODE_ENV=test jest",
"mobile:android": "yarn workspace @owlify/mobile android",
"mobile:ios": "yarn workspace @owlify/mobile ios",
"mobile:start": "yarn workspace @owlify/mobile start",
"mobile:storybook": "yarn workspace @owlify/mobile storybook",
"server:dev:start": "yarn workspace @owlify/server dev:server",
"server:typeorm": "yarn workspace @owlify/server typeorm",
"server:build": "yarn workspace @owlify/server build"
},
"workspaces": {
"packages": [
"packages/*",
"packages/shared/*"
]
},
"devDependencies": {
"@owlify/eslint-config": "*",
"@types/jest": "^26.0.6",
"cross-env": "^7.0.2",
"cz-customizable": "^6.2.1",
"eslint-plugin-import-helpers": "^1.0.2",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
}
}