-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "styled-components-sandbox",
"version": "0.0.1",
"repository": "git@github.com:dkimura/styled-components-sandbox.git",
"author": "Daichi Kimura <dkimura@bdd.xyz>",
"license": "MIT",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"jest": "jest",
"lint:css": "stylelint \"./src/**/*.js\"",
"test": "npm run lint:css && npm run jest",
"build": "NODE_ENV=production webpack",
"start": "NODE_ENV=development webpack-dev-server --port 3000"
},
"dependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4",
"styled-components": "v2.0.0-15"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@webpack-blocks/babel6": "^0.4.1",
"@webpack-blocks/dev-server2": "^0.4.0",
"@webpack-blocks/webpack2": "^0.4.0",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"jest-styled-components": "^1.3.3",
"react-hot-loader": "next",
"react-storybook": "^1.0.0",
"react-test-renderer": "^15.5.4",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-styled-components": "^0.1.0",
"webpack": "^2.4.1",
"webpack-blocks-happypack": "^0.1.3",
"webpack-blocks-html": "^1.3.1",
"webpack-blocks-split-vendor": "^0.1.2",
"webpack-dev-server": "^2.4.2"
},
"jest": {
"testEnvironment": "node",
"moduleDirectories": [
"src",
"node_modules"
]
}
}