-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
107 lines (107 loc) · 3.4 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "formalist-standard-react",
"version": "4.3.1",
"description": "A standard form implementation for Formalist using React",
"main": "lib/index.js",
"scripts": {
"build": "NODE_ENV=development babel src --out-dir lib",
"postbuild": "npm run copycss",
"compile": "npm run build",
"precompile": "npm run clean",
"watch": "nodemon --watch src --exec 'npm run build' --ext js,css,mcss",
"test": "NODE_ENV=test babel-node test | tap-spec",
"posttest": "npm run lint",
"clean": "rm -rf ./lib/*",
"copycss": "rsync -r ./src/* --include='*/' --include='*.css' --exclude='*' lib",
"lint": "eslint 'src/*.js' 'src/**/*.js' 'test/*.js' 'test/**/*.js'; exit 0",
"watchlint": "nodemon --watch src --exec 'npm run lint'"
},
"repository": {
"type": "git",
"url": "https://github.com/icelab/formalist-standard-react.git"
},
"keywords": [
"formalist"
],
"authors": [
"Max Wheeler <[email protected]> (https://github.com/makenosound)",
"Tim Riley <[email protected]> (https://github.com/timriley)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/icelab/formalist-standard-react/issues"
},
"homepage": "https://github.com/icelab/formalist-standard-react",
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-cli": "6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-module-alias": "^1.6.0",
"babel-preset-react-app": "3.0.3",
"blue-tape": "^0.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"eslint": "^4.9.0",
"eslint-config-react-app": "2.0.1",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-prettier": "2.3.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-react": "7.4.0",
"ignore-styles": "^5.0.1",
"isfunction": "^0.0.6",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^11.3.0",
"nodemon": "^1.18.6",
"prettier": "1.7.4",
"tap-spec": "4.1.1",
"tape": "^4.5.1"
},
"dependencies": {
"attache-upload": "^2.1.1",
"babel-plugin-emotion": "^8.0.12",
"classnames": "^2.2.5",
"clipboard": "1.7.1",
"component-emitter": "1.2.1",
"draft-js": "^0.10.5",
"draft-js-ast-exporter": "^2.0.0",
"draft-js-ast-importer": "^2.0.0",
"draft-js-autolist-plugin": "^2.0.0",
"draft-js-block-breakout-plugin": "^2.0.1",
"draft-js-plugins-editor": "^2.1.1",
"draft-js-single-line-plugin": "^2.0.1",
"emotion": "^8.0.8",
"es6-promise": "^4.1.1",
"exif-js": "2.3.0",
"formalist-compose": "^3.1.0",
"formalist-data-object-renderer": "^1.1.1",
"fuzzy": "0.1.3",
"is-number": "^4.0.0",
"lodash.assigninwith": "^4.2.0",
"lodash.debounce": "4.0.8",
"lodash.partialright": "4.2.1",
"moment": "^2.19.1",
"number-is-integer": "^1.0.1",
"postcss": "^6.0.13",
"postcss-import": "^11.0.0",
"prop-types": "^15.6.0",
"react-addons-update": "^15.6.2",
"react-day-picker": "^6.2.1",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.0.0",
"react-dropzone": "^4.2.0",
"react-immutable-proptypes": "^2.1.0",
"react-textarea-autosize": "^5.1.0",
"shallow-equals": "1.0.0",
"superagent": "^3.6.3",
"trigger-event": "^1.0.3",
"uid": "^0.0.2"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
}
}