-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.25 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "owlora",
"version": "0.53.1",
"main": "index.js",
"repository": "https://github.com/tadashi-aikawa/owlora.git",
"author": "tadashi-aikawa <syou.maman@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --config webpack.config.dev.js --progress",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest --coverage",
"clean-visualized-test": "rm -rf .reg",
"capture-images": "node storybook-camera.js",
"compare-images": "reg-suit sync-expected && reg-suit compare",
"publish-report": "reg-suit publish",
"visualized-test": "run-s build-storybook clean-visualized-test capture-images compare-images publish-report",
"build": "webpack --config webpack.config.pro.js",
"deploy": "firebase deploy --project owlora-mamansoft"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"dependencies": {
"@storybook/addon-actions": "^5.0.6",
"@storybook/addon-knobs": "^5.0.6",
"@storybook/addon-notes": "^5.0.6",
"@storybook/react": "^5.0.6",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.123",
"@types/query-string": "^6.3.0",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^5.0.20",
"@types/react-redux-toastr": "^7.4.1",
"@types/uuid": "^3.4.4",
"axios": "^0.21.1",
"firebase": "^5.9.4",
"js-yaml": "^3.13.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"query-string": "^6.4.2",
"react": "^16.8.6",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.8.6",
"react-emojione": "^5.0.1",
"react-redux": "^5.0.7",
"react-redux-firebase": "^2.2.6",
"react-redux-toastr": "^7.4.8",
"redux": "^3.7.2",
"redux-localstorage": "^0.4.1",
"redux-saga": "^0.16.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.85.0",
"typestyle": "^2.0.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^24.0.12",
"awesome-typescript-loader": "^5.2.1",
"cross-conf-env": "^1.1.2",
"css-loader": "^2.1.1",
"del": "^4.1.0",
"firebase-tools": "^6.6.0",
"image-loader": "^0.0.1",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-mock-now": "^1.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"puppeteer": "^1.14.0",
"react-test-renderer": "^16.8.6",
"reg-keygen-git-hash-plugin": "^0.7.16",
"reg-notify-slack-plugin": "^0.7.16",
"reg-publish-s3-plugin": "^0.7.22",
"reg-suit": "^0.7.17",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.3",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
}
}