-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "tamboon-react",
"version": "0.1.0",
"description": "",
"scripts": {
"build": "tsc",
"bundle": "parcel build ./src/index.html",
"format": "prettier --check './src/**/*.{ts,tsx}'",
"lint": "eslint --max-warnings=0 ./src",
"client": "parcel serve ./src/index.html",
"server": "json-server --watch db.json --port 3001",
"test": "jest"
},
"author": "Jonas Buntinx",
"devDependencies": {
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"json-server": "^0.16.3",
"parcel": "2.0.0-beta.2",
"postcss": "^8.2.9",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"tailwindcss": "^2.1.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"moduleNameMapper": {
"~(.*)$": "<rootDir>/src/$1"
},
"testMatch": [
"**/__tests__/**/*.(test|spec).(ts|tsx)"
]
}
}