-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
91 lines (91 loc) · 2.79 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
{
"name": "formland",
"version": "1.0.1",
"description":
"A simple, super-flexible, extensible config based form generator for React.",
"keywords": [
"component",
"components",
"config",
"extensible",
"form",
"forms",
"frontend",
"react",
"react-component",
"ui"
],
"homepage": "https://oss.indix.com/formland/",
"bugs": {
"url": "https://github.com/indix/formland/issues"
},
"license": "MIT",
"contributors": ["Pranesh Ravi <[email protected]>"],
"main": "lib/index",
"repository": "https://github.com/indix/formland.git",
"scripts": {
"build": "yarn build:js && yarn build:scss",
"build:examples": "webpack --color --progress",
"build:js": "tsc --outDir lib/",
"build:js:watch": "tsc --outDir lib/ -w",
"build:scss": "yarn run task:scss & yarn run task:autoprefix",
"precommit": "pretty-quick --staged",
"publish:examples":
"NODE_ENV=production yarn build:examples && gh-pages -d examples/dist -r $GITHUB_REPO_URL",
"publish:examples:local":
"NODE_ENV=production yarn build:examples && gh-pages -d examples/dist",
"scss:watch": "nodemon --watch scss/ -e scss --exec yarn run build:scss",
"start:examples": "webpack-dev-server --open",
"task:autoprefix": "postcss css/*.css --use autoprefixer -d css",
"task:scss": "node-sass-chokidar scss/index.scss -o css",
"test": "echo 'Work in Progress'"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"classnames": "^2.2.5",
"dot-prop-immutable": "^1.4.0",
"rc-tooltip": "^3.7.0"
},
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/core-js": "^0.9.43",
"@types/rc-tooltip": "^3.4.10",
"@types/react": "^16.0.25",
"@types/react-dom": "^16.0.3",
"@types/react-select": "^1.0.60",
"@types/rollup": "^0.51.1",
"@types/shortid": "^0.0.29",
"autoprefixer": "^7.1.6",
"babel-minify-webpack-plugin": "^0.2.0",
"codemirror": "^5.35.0",
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"extract-text-webpack-plugin": "^3.0.2",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"node-sass": "^4.7.2",
"node-sass-chokidar": "^0.0.3",
"nodemon": "^1.12.1",
"postcss-cli": "^4.1.1",
"prettier": "^1.10.2",
"pretty-quick": "^1.2.3",
"react": "^16.2.0",
"react-codemirror2": "^4.0.0",
"react-dom": "^16.2.0",
"react-select": "^1.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.9.1",
"webpack": "^3.9.1",
"webpack-dev-server": "^3.1.11"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"maintainers": ["Pranesh Ravi <[email protected]>"]
}