-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.99 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.99 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
{
"name": "lsk-example1",
"version": "1.0.0",
"author": "isuvorov",
"license": "MIT",
"engines": {
"node": ">=5.0 <7",
"npm": ">=3.3 <4"
},
"dependencies": {
"bootstrap": "^3.3.7",
"bootstrap-3-card": "^0.2.0",
"bootstrap-sass": "^3.3.7",
"core-decorators": "^0.15.0",
"eventemitter3": "^2.0.2",
"importcss": "^1.0.3",
"lego-starter-kit": "^1.3.1",
"lodash": "^4.17.4",
"lsk-admin": "^1.0.0",
"lsk-general": "^0.5.1",
"mobx": "*",
"mobx-react": "^4.1.0",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-transition-group": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-bootstrap-table": "^2.9.1",
"react-cookie": "^1.0.4",
"react-dom": "^15.4.2",
"react-icons": "github:isuvorov/react-icons",
"react-toastr": "^2.8.2",
"reactstrap": "^4.0.1"
},
"devDependencies": {
"@kadira/storybook": "^2.35.2",
"babel-cli": "6.9.0",
"babel-core": "6.9.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.4",
"babel-plugin-react-require": "3.0.0",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-rewire": "1.0.0-rc-3",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-react-constant-elements": "6.8.0",
"babel-plugin-transform-react-inline-elements": "6.8.0",
"babel-plugin-transform-react-remove-prop-types": "0.2.7",
"babel-plugin-transform-runtime": "6.9.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-node5": "12.0.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"babel-register": "6.9.0",
"babel-template": "6.9.0",
"babel-types": "6.9.0",
"css-loader": "0.26.1",
"eslint": "3.14.0",
"eslint-config-airbnb": "14.0.0",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "ramasilveyra/eslint-plugin-import#fix-root-pkg-copy-dont-remove",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"getstorybook": "^1.7.0",
"glob-loader": "^0.3.0",
"json-loader": "0.5.4",
"jsx-control-statements": "3.1.2",
"lsk-build": "^0.6.0",
"mobx-react-devtools": "^4.2.11",
"node-fetch": "^1.6.3",
"node-sass": "^4.5.0",
"postcss-loader": "1.2.2",
"react-hot-loader": "3.0.0-beta.6",
"sass-loader": "^4.1.1",
"webpack": "1.13.2",
"webpack-hot-middleware": "2.15.0",
"webpack-middleware": "1.5.1"
},
"scripts": {
"clean": "babel-node tools/run clean",
"copy": "babel-node tools/run copy",
"bundle": "babel-node tools/run bundle",
"build": "babel-node tools/run build --release",
"deploy": "deploy.sh",
"webpack-stats": "webpack --env production --profile --json > webpack.stats.json",
"render": "babel-node tools/run render",
"start": "node build/server.js",
"dev": "babel-node tools/run start | node node_modules/lego-starter-kit/src/utils/bunyan -o short -l trace",
"storybook": "start-storybook -p 9001"
}
}