forked from n05-frontend/shuwa-frontend-book-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "shuwa-frontend-book-app",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:MasahiroYasumoto/shuwa-frontend-book-app.git",
"author": "Masahiro Yasumoto <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"@types/jquery": "^3.5.5",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.25.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@types/react-transition-group": "^4.4.1",
"jquery": "^3.6.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-transition-group": "^4.4.1"
},
"scripts": {
"build": "webpack",
"lint:ts": "tsc --noEmit",
"test": "jest",
"serve": "webpack-dev-server"
}
}