-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 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
{
"name": "fl-admin",
"version": "0.15.0",
"description": "Admin panel for FounderLab apps",
"main": "lib/index.js",
"author": {
"name": "Gwilym Humphreys",
"url": "https://github.com/gwilymhumphreys"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/founderlab/fl-admin.git"
},
"scripts": {
"prepublish": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --out-dir ./lib",
"build": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --out-dir ./lib",
"watch": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --watch --out-dir ./lib",
"test": "eval $(cat test/.env) mocha test/**/*.tests.js"
},
"dependencies": {
"classnames": "^2.2.3",
"inflection": "^1.7.2",
"lodash": "^4.13.1",
"react-datetime": "^2.0.1",
"react-dropzone-s3-uploader": ">=0.3.1",
"react-helmet": "^3.0.1",
"react-select": "^0.9.1",
"react-sidebar": "^2.1.1",
"warning": "^2.1.0",
"react": ">=15.3.1",
"react-bootstrap": ">=0.30.3",
"react-redux": ">=4.0.0",
"fl-react-utils": ">=0.15.0",
"fl-redux-utils": ">=0.2.0",
"redux-form": ">=6.0.2"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-eslint": "^4.1.3",
"eslint": "^1.5.1",
"eslint-config-founderlab": "^0.1.0",
"eslint-plugin-react": "^3.4.2",
"expect": "^1.12.2"
}
}