-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
66 lines (66 loc) · 1.46 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
{
"name": "satcheljs-cookbook",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --openssl-legacy-provider server.js",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/jest": "^29.1.1",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"css-loader": "^2.1.1",
"express": "^4.15.4",
"husky": "^1.3.1",
"jest": "^29.1.2",
"lint-staged": "^8.1.5",
"opn": "^5.4.0",
"prettier": "^1.19.1",
"pug": "^3.0.1",
"style-loader": "^0.23.1",
"ts-jest": "^29.0.3",
"ts-loader": "^8.2.0",
"typescript": "^4.8.4",
"webpack": "^4.41.6",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"classnames": "^2.2.5",
"mobx": "~4.5.0",
"mobx-react": "~5.2.8",
"mobx-react-lite": "^1.3.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"satcheljs": "4.0.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}