-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.68 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
{
"name": "connectn",
"version": "1.0.0",
"main": "src/index.tsx",
"repository": {
"type": "git",
"url": "https://github.com/rasreee/connectn.git"
},
"author": "rasreee",
"license": "MIT",
"scripts": {
"build": "react-scripts build",
"start": "react-scripts start",
"dev": "yarn clean && yarn start",
"clean": "rm -rf ./dist ./tsconfig.tsbuildinfo ./node_modules/.cache",
"fix": "yarn lint && yarn format",
"format": "prettier --write '**/*.{json,md,mdx}'",
"lint": "eslint '**/*.{js,jsx,cjs,mjs,ts,tsx}' --fix",
"test": "jest --clearCache && jest",
"test:watch": "yarn test --watch",
"test:components": "yarn test:watch --group=components --group=-models",
"test:models": "yarn test:watch --group=models --group=-components",
"test:models:grid": "yarn test:models --group=grid --group=-game",
"test:models:game": "yarn test:models --group=game --group=-grid",
"quality-check": "yarn type-check && yarn build && yarn test",
"type-check": "tsc --noEmit --incremental false"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"lodash.isnull": "^3.0.0",
"lodash.isundefined": "^3.0.1",
"lodash.times": "^4.3.2",
"mobx": "^6.5.0",
"mobx-react-lite": "^3.3.0",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@emotion/babel-plugin": "^11.7.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^28.1.1",
"@types/lodash.isnull": "^3.0.6",
"@types/lodash.isundefined": "^3.0.6",
"@types/lodash.times": "^4.3.6",
"@types/node": "^17.0.21",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-jest": "^28.1.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.1.1",
"jest-runner-groups": "2.2.0",
"jest-watch-typeahead": "^1.0.0",
"prettier": "^2.6.0",
"react-scripts": "5.0.1",
"ts-jest": "^28.0.4",
"typescript": "^4"
},
"env": {
"test": {
"presets": [
"react-app"
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}