-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.31 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.31 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
102
103
{
"name": "@workflo/component-library-components",
"version": "0.1.4",
"description": "Components for the Workflo Component Library app",
"main": "lib",
"scripts": {
"build": "npm run clean-lib && webpack --config webpack.config.js --colors --progress --inline && node scripts/generate-index.js",
"prepublish": "npm run build",
"start": "node .storybook/server.js",
"lint": "esw **.js .storybook/**.js --no-ignore",
"lint:watch": "npm run lint -- --watch",
"depcheck": "./node_modules/depcheck/bin/depcheck",
"clean-lib": "rm -rf lib",
"format": "prettier --write --trailing-comma es5 --single-quote --no-semi --print-width 90 \"src/**/*.js\"",
"flow": "flow check",
"flow:watch": "flow",
"flow:stop": "flow stop",
"storybook": "start-storybook -p 9001 --dont-track",
"build-storybook": "build-storybook -c .storybook -o .out",
"test": "jest"
},
"files": ["lib", "src"],
"repository": {
"type": "git",
"url": "workfloapp/component-library-components"
},
"license": "All Rights Reserved",
"pre-commit": ["test"],
"ava": {
"babel": "inherit"
},
"dependencies": {
"@workflo/components": "0.8.136",
"@workflo/styles": "0.7.13",
"acorn": "^4.0.3",
"acorn-jsx": "^3.0.1",
"aphrodite": "^0.5.0",
"babel-core": "^6.18.2",
"babel-generator": "^6.18.0",
"babel-polyfill": "^6.16.0",
"babel-standalone": "^6.18.1",
"babel-template": "^6.16.0",
"babel-traverse": "^6.18.0",
"babel-types": "^6.18.0",
"babylon": "^6.13.1",
"color": "^2.0.0",
"fuzzaldrin-plus": "^0.4.1",
"grommet": "^0.6.10",
"gsap": "^1.19.1",
"js-theme": "0.8.2",
"lodash": "^4.13.1",
"prop-types": "^15.5.8",
"react": "15.4.2",
"react-color": "^2.13.8",
"react-copy-to-clipboard": "^5.0.0",
"react-dom": "15.4.2",
"react-transition-group": "^1.1.3",
"recompose": "^0.23.1",
"shallow-equal": "^1.0.0",
"slate": "^0.22.9"
},
"devDependencies": {
"@kadira/storybook": "^2.6.1",
"babel-cli": "^6.10.1",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.9.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"better-npm-run": "0.0.8",
"css-loader": "^0.23.1",
"eslint": "^2.12.0",
"eslint-config-prettier": "^1.7.0",
"eslint-config-standard": "^5.3.1",
"eslint-config-standard-jsx": "^1.2.1",
"eslint-config-standard-react": "^2.4.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-flowtype": "^2.2.7",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-standard": "^1.3.2",
"express": "^4.13.3",
"jest": "^20.0.4",
"json-loader": "^0.5.4",
"pre-commit": "^1.1.3",
"prettier": "^1.3.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.0",
"redbox-react": "1.2.10",
"redux": "^3.5.2",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.9.1"
}
}