-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "react-json-editor",
"version": "0.3.3",
"description": "A JSON editor for ReactJS",
"main": "dist/index.js",
"scripts": {
"test": "karma start",
"test:watch": "karma start --auto-watch --no-single-run",
"build": "rimraf dist && NODE_ENV=production babel src -d dist && node-sass src/jsonEditor.scss > dist/jsonEditor.css",
"lint": "eslint src tests",
"start": "node examples/server.js"
},
"author": "Vito LaVilla <vito@vitosamson.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hexa1/react-json-editor"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.4.0",
"eslint-config-hexa1": "github:hexa1/eslint-config-hexa1#v0.1.1",
"eslint-import-resolver-webpack": "^0.4.0",
"expect": "^1.20.2",
"express": "^4.14.0",
"express-urlrewrite": "^1.2.0",
"json-loader": "^0.5.4",
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.0",
"node-sass": "^4.5.3",
"react": "^0.14.8",
"react-bootstrap": "^0.29.3",
"react-dom": "^0.14.8",
"react-select": "^1.0.0-beta14",
"rimraf": "^2.5.4",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1"
},
"peerDependencies": {
"react": "^0.14 || ^15.0.0-rc || ^15.0",
"react-dom": "^0.14 || ^15.0.0-rc || ^15.0",
"react-bootstrap": "^0.29.3"
},
"dependencies": {
"classnames": "^2.2.5",
"immutable": "^3.8.1",
"lodash.isplainobject": "^4.0.5",
"prop-types": "^15.6.0"
}
}