This repository has been archived by the owner on Nov 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
89 lines (89 loc) · 2.7 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
{
"name": "formbuilder",
"version": "0.0.1",
"description": "A tool to build forms on the web",
"scripts": {
"build:formbuilder": "NODE_ENV=production rimraf build && webpack --config webpack.config.prod.js --optimize-minimize && cp formbuilder/index.prod.html build/index.html",
"build:formbuilder-gh": "rimraf build && webpack --config webpack.config.github.js && cp formbuilder/index.prod.html build/index.html",
"lint": "eslint src test",
"publish-to-gh-pages": "npm run build:formbuilder-gh && gh-pages --dist build/",
"publish-to-npm": "npm run dist && npm publish",
"start": "node devServer.js",
"tdd": "npm run test -- -w",
"test": "SERVER_URL=http://localhost:8888/v1 NODE_ENV=test mocha --compilers js:babel/register --recursive --require ./test/setup-jsdom.js $(find test -name '*_test.js')"
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"dependencies": {
"bootstrap": "^3.3.7",
"bootswatch": "^3.3.7",
"btoa": "^1.1.2",
"history": "^1.17.0",
"isomorphic-fetch": "^2.2.1",
"json2csv": "^3.7.0",
"json2xls": "^0.1.2",
"kinto-http": "^4.3.4",
"react": "^15.3.2",
"react-bootstrap": "^0.30.3",
"react-clipboard.js": "^0.2.5",
"react-dom": "^15.3.2",
"react-drag-and-drop": "^2.0.1",
"react-jsonschema-form": "^0.40.0",
"react-redux": "^4.0.6",
"react-router": "^1.0.3",
"redux": "^3.0.5",
"redux-thunk": "^1.0.3",
"riek": "^1.0.2",
"string": "^3.3.1",
"urlencode": "^1.1.0",
"uuid": "^2.0.2"
},
"devDependencies": {
"babel": "^5.8.20",
"babel-eslint": "^4.1.6",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"babel-polyfill": "^6.9.1",
"btoa": "^1.1.2",
"chai": "^3.3.0",
"css-loader": "^0.23.1",
"eslint": "^1.8.0",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.4.0",
"html": "0.0.10",
"jsdom": "^7.2.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^2.3.0",
"react-addons-test-utils": "^15.3.2",
"react-transform-hmr": "^1.0.1",
"rimraf": "^2.4.4",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.10.5",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kinto/formbuilder.git"
},
"author": "Kinto team <kinto@mozilla.org>",
"keywords": [
"react",
"form",
"json-schema"
],
"license": "Apache-2.0",
"homepage": "https://github.com/Kinto/formbuilder#readme"
}