-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.49 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ussu",
"version": "1.0.0",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/@react-native-community",
"**/@react-native-community/**",
"node_modules/react-navigation-tabs/lib/module/views/MaterialTopTabBar.js"
]
},
"engines": {
"node": ">=12.x"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@emotion/babel-preset-css-prop": "^10.0.17",
"@graphql-codegen/cli": "^1.12.2",
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"css-loader": "^3.4.2",
"danger": "^9.2.8",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.5.0",
"file-loader": "^5.1.0",
"husky": "^4.2.3",
"jest-emotion": "^10.0.17",
"lint-staged": "^10.0.8",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.9.0",
"ts-loader": "^6.2.1",
"url-loader": "^3.0.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"dependencies": {
"jest": "^25.1.0",
"webpack": "^4.41.6"
},
"scripts": {
"heroku-postbuild": "yarn setup && yarn san:front-prod && yarn san:server-prod",
"format": "`yarn bin`/prettier \"packages/*/src/**/*.{ts,tsx,js,css,graphql}\" --write",
"setup": "node ./scripts/initialSetup.js",
"test": "NODE_ENV=test && jest",
"testc": "NODE_ENV=test && jest --coverage",
"lint": "eslint \"packages/*/src/**/*.{ts,tsx}\"",
"codegen": "graphql-codegen --config codegen.yml"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,css,graphql}": [
"yarn prettier --write",
"git add"
]
},
"cypress": {
"baseUrl": "http://localhost:3002"
},
"jest": {
"projects": [
"<rootDir>/packages/website"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
}
}