generated from ChoSeoHwan/next-ts-template-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.6 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
{
"name": "next-ts-template",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ChoSeoHwan/next-ts-template.git",
"author": "wtae1216 <[email protected]>",
"license": "MIT",
"dependencies": {
"@emotion/core": "^10.0.28",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"immer": "^6.0.1",
"immer-reducer": "^0.7.10",
"next": "^9.3.0",
"next-redux-wrapper": "^5.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-docs": "^5.3.17",
"@storybook/addon-knobs": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addon-viewport": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@types/dotenv": "^8.2.0",
"@types/jest": "^25.1.4",
"@types/next-redux-wrapper": "^3.0.0",
"@types/node": "^13.9.0",
"@types/react": "^16.9.23",
"@types/react-redux": "^7.1.7",
"axios-mock-adapter": "^1.18.1",
"babel-jest": "^25.2.6",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"husky": "^4.2.3",
"jest": "^25.2.4",
"lint-staged": "^10.0.8",
"prettier": "1.19.1",
"react-docgen-typescript-loader": "^3.7.1",
"redux-devtools-extension": "^2.13.8",
"shell-quote": "^1.7.2",
"ts-jest": "^25.3.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.2.0",
"tslint-react-hooks": "^2.2.1",
"typescript": "^3.8.3"
},
"scripts": {
"dev": "sudo next dev --hostname test.choseohwan.com --port 80",
"lint-staged": "lint-staged --config config/lint-staged.config.js",
"storybook": "start-storybook -p 6006",
"build": "next build",
"start": "next start",
"export": "next export",
"build-storybook": "build-storybook",
"test": "jest --watchAll --config=config/jest.config.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --config config/lint-staged.config.js"
}
}
}