-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.54 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.54 KB
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
{
"name": "interval-timer",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"core-test": "yarn workspace @interval-timer/core run test",
"core-test-ci": "yarn workspace @interval-timer/core run test --runInBand --coverage",
"mobile": "yarn workspace @interval-timer/mobile start",
"mobile-test": "yarn workspace @interval-timer/mobile run test",
"mobile-test-ci": "yarn workspace @interval-timer/mobile run test --runInBand --coverage",
"pwa": "yarn workspace @interval-timer/pwa",
"web": "yarn workspace @interval-timer/web run start",
"web-build": "yarn workspace @interval-timer/web run build",
"web-lint": "yarn workspace @interval-timer/web run lint:fix",
"web-test-coverage": "yarn workspace @interval-timer/web run test:coverage",
"web-test": "yarn workspace @interval-timer/web run test",
"prepare": "husky install"
},
"devDependencies": {
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@flextremedev/eslint-config": "^0.1.1",
"@flextremedev/prettier-config": "^0.1.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"eslint": "^7.23.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"expo-yarn-workspaces": "^1.3.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
},
"resolutions": {
"react": "^17.0.0",
"react-dom": "^17.0.0",
"webpack": "~4.44.0"
}
}