-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.83 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
{
"name": "basic-ui",
"version": "1.0.0",
"description": "A react component library of basic ui components with various themes.",
"main": "lib/",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib && npm run build:flow",
"build:flow": "flow-copy-source -v -i '*.spec.*' src lib",
"prebuild": "npm run lint && npm run flow",
"start": "npm run styleguide-server",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --ext .js,.jsx --fix",
"webpack": "NODE_ENV=production webpack -p --bail",
"styleguide-server": "styleguidist server",
"styleguide-build": "rm -rf ./build && styleguidist build && cp -R ./styleguide ./ && rm -rf ./styleguide",
"flow": "node_modules/.bin/flow"
},
"repository": {
"type": "git",
"url": "https://github.com/mike-robertson/basic-ui.git"
},
"author": "Mike Robertson",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.0",
"css-loader": "^0.26.0",
"css-modules-require-hook": "^4.0.5",
"dirty-chai": "^1.2.2",
"enzyme": "^2.6.0",
"eslint": "^3.10.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-webpack": "^0.7.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flow-bin": "^0.40.0",
"flow-copy-source": "^1.1.0",
"ignore-styles": "^5.0.1",
"jsdom": "^9.8.3",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"mock-my-api": "^1.1.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-color-function": "^2.0.1",
"postcss-cssnext": "^2.8.0",
"postcss-import": "8.1.0",
"postcss-loader": "^1.1.1",
"postcss-reporter": "^2.0.0",
"react-addons-perf": "^15.3.2",
"react-addons-test-utils": "^15.4.0",
"react-perf-tool": "^0.1.7",
"react-styleguidist": "^4.6.3",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.27",
"webpack-dashboard": "^0.2.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"classnames": "^2.2.5",
"fuzzy": "^0.1.3",
"jss": "^7.0.0",
"jss-preset-default": "^2.0.0",
"react-jss": "^6.0.0",
"recompose": "^0.23.4",
"uuid": "^3.0.1"
},
"peerDependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"moduleRoots": [
"./src",
"./node_modules"
]
}