-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"jest-cli": "^20.0.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-icons": "^2.2.5",
"react-scripts": "1.0.10"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"deploy-storybook": "storybook-to-ghpages",
"test": "jest",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@storybook/addon-info": "^3.2.0",
"@storybook/react": "^3.2.3",
"@storybook/storybook-deployer": "^2.0.0",
"babel-jest": "^20.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^20.0.4",
"regenerator-runtime": "^0.10.5"
},
"jest": {
"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)$": "identity-obj-proxy"
}
},
"storybook-deployer": {
"gitUsername": "aschenkel",
"gitEmail": "axel.schenkelman@gmail.com",
"commitMessage": "Deploy Storybook"
}
}