-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathpackage.json
83 lines (83 loc) · 2.43 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
{
"scripts": {
"build": "parcel build index.html",
"dev": "node ./server/index.js",
"lint": "eslint src server tests --ext .js,.ts,.jsx,.tsx",
"test": "yarn test-jest",
"test-jest": "jest tests/components",
"test-tsd": "tsd tests/types-tsd",
"test-dtslint": "dtslint tests/types-dtslint"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@microsoft/api-documenter": "^7.9.16",
"@microsoft/api-extractor": "^7.10.4",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.5",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.3.0",
"concurrently": "^6.0.0",
"date-fns": "^2.16.1",
"dtslint": "^4.0.4",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-sonarjs": "^0.6.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"postcss": "^8.1.1",
"postcss-import": "^12.0.0",
"postcss-nesting": "^7.0.1",
"postcss-preset-env": "^6.0.0",
"postcss-purgecss": "^2.0.0",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"sass": "^1.26.11",
"tailwindcss": "^1.8.10",
"tsd": "^0.14.0",
"typescript": "^4.2.3"
},
"volta": {
"node": "12.18.4",
"yarn": "1.22.10"
},
"dependencies": {
"express": "^4.17.1",
"json-server": "^0.16.2",
"parcel-bundler": "^1.12.4"
},
"name": "professional-ts",
"version": "1.1.0",
"description": "Mike's \"professional TypeScript\" course",
"repository": "https://github.com/mike-north/professional-ts",
"author": "Mike North <[email protected]>",
"license": "BSD-2-Clause",
"private": true,
"jest": {
"verbose": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!server/**"
]
},
"resolutions": {
"node-forge": "^0.10.0"
}
}