-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "secullum-react-ui",
"version": "1.0.0",
"description": "Set of React components for building user interfaces",
"main": "dist/bundle.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Secullum/secullum-react-ui.git"
},
"license": "MIT",
"scripts": {
"start": "start-storybook -p 9001 -c storybook",
"build": "cross-env NODE_ENV=production webpack",
"lint": "eslint .",
"clean": "rimraf dist"
},
"dependencies": {
"classnames": "^2.2.5",
"font-awesome": "^4.6.3",
"form-serialize": "^0.7.1"
},
"devDependencies": {
"@kadira/storybook": "^2.6.1",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-latest": "^6.14.0",
"babel-preset-react": "^6.11.1",
"cross-env": "^2.0.1",
"css-loader": "^0.24.0",
"eslint": "^3.9.1",
"eslint-config-secullum": "^1.0.3",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.1",
"eslint-plugin-react": "^6.5.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
},
"peerDependencies": {
"react": "^0.14 || ^15.0",
"react-dom": "^0.14 || ^15.0"
}
}