This repository was archived by the owner on Oct 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.32 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.32 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
91
92
93
94
95
96
{
"name": "formatron",
"version": "0.0.81",
"description": "A library that generates forms based on JSON schema.",
"main": "./lib",
"scripts": {
"doc": "esdoc && git add docs/ && git diff-index --quiet HEAD || git commit -m 'Updated docs'",
"test": "karma start",
"test:watch": "karma start --no-single-run --auto-watch",
"start": "webpack-dev-server --env.dev --hot --inline --content-base example/ --port 8080",
"start:lib:js": "babel --watch src --out-dir lib",
"build": "npm run build:lib && npm run build:dist",
"build:lib": "npm run build:lib:js && npm run build:lib:css && npm run build:lib:assets",
"build:lib:js": "babel src --out-dir lib",
"build:lib:css": "node-sass --load-path=./node_modules --output lib src",
"build:lib:assets": "cp src/theme/*.png lib/theme/",
"build:dist": "webpack --env.prod",
"clean": "rm -r lib/* dist/*",
"preversion": "echo 'tests go here' && npm run doc",
"version": "npm run clean && npm run build",
"postversion": "git push && git push --tags",
"format": "prettier --trailing-comma es5 --no-bracket-spacing --single-quote true --write"
},
"author": "Andrew Russell",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"debounce": "^1.0.2",
"es6-error": "^4.0.2",
"font-awesome": "^4.7.0",
"font-awesome-webpack-2": "^1.0.0",
"google-libphonenumber": "^1.0.27",
"immutable": "^4.0.0-rc.2",
"less": "^2.7.2",
"moment": "^2.0.0",
"react": "^15.0.0",
"react-currency-input": "^1.0.4",
"react-debounce-input": "^2.4.2",
"react-dropzone": "^3.9.2",
"react-immutable-proptypes": "^2.1.0",
"react-maskedinput": "^3.2.4",
"react-portal": "^3.0.0",
"react-rte": "^0.11.0",
"react-select": "1.0.0-rc.3",
"react-tabs": "^0.7.0",
"react-tether": "^0.5.6",
"react-virtualized": "^9.0.0",
"react-virtualized-select": "^3.1.0",
"yet-another-datetime-picker": "^1.0.4"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.18.0",
"babel-generator": "^6.11.0",
"babel-loader": "^6.2.7",
"babel-plugin-import-rename": "^1.0.1",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-root-import": "^4.1.8",
"chai": "^4.0.2",
"chai-enzyme": "^0.8.0",
"css-loader": "^0.27.3",
"enzyme": "^2.9.1",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"node-sass": "^4.1.1",
"postcss": "^6.0.1",
"postcss-loader": "^2.0.5",
"prettier": "^1.5.3",
"react-dom": "^15.3.2",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.3",
"sinon": "^2.3.6",
"style-loader": "^0.15.0",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
}
}