-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.68 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.68 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "reactchatapp",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/rechtburg/ReactChatApp.git"
},
"author": "YUKI SHIROTA",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "webpack",
"build:storybook": "build-storybook -o public-storybook",
"dev": "webpack-dev-server --mode development --config webpack.dev.js",
"check": "tsc --noEmit --pretty",
"lint": "tslint './src/**/*.ts' './src/**/*.tsx'",
"lint:fix": "tslint --fix './src/**/*.ts' './src/**/*.tsx'",
"lint:prettier-check": "tslint-config-prettier-check ./tslint.json",
"storybook": "start-storybook -p 6006 -c .storybook",
"storybook:deploy": "storybook-to-ghpages",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --verbose --coverage"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFiles": [
"./src/__tests__/test.setup.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.test.(ts|tsx)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/public/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint",
"git add"
]
},
"dependencies": {
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"@reach/router": "^1.2.1",
"axios": "^0.19.0",
"immutable": "^4.0.0-rc.12",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/react": "^5.1.9",
"@types/enzyme": "^3.9.2",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.13",
"@types/node": "^12.6.2",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/storybook__addon-actions": "^3.4.3",
"@types/storybook__addon-knobs": "^5.0.2",
"@types/storybook__react": "^4.0.2",
"babel-loader": "^8.0.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.1",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.5",
"webpack": "^4.32.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
}
}