-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 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
{
"name": "react-semantic-form",
"version": "0.1.2",
"description": "A dynamic form for React styled with semantic-ui",
"main": "lib/index",
"files": [
"*.md",
"docs",
"es6",
"lib",
"modules/*.js",
"umd"
],
"scripts": {
"build": "npm run build-cjs && npm run build-es6",
"build-cjs": "./node_modules/.bin/rimraf lib && ./node_modules/.bin/babel ./src -d lib --presets=react,stage-0,es2015 --ignore '__tests__'",
"build-es6": "./node_modules/.bin/rimraf es6 && ./node_modules/.bin/babel ./src -d es6 --presets=react,stage-0 --ignore '__tests__'",
"build-umd": "NODE_ENV=production webpack src/index.js umd/ReactSemanticForm.js",
"build-min": "NODE_ENV=production webpack -p src/index.js umd/ReactSemanticForm.min.js",
"start": "node examples/server.js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sharingapples/react-semantic-form.git"
},
"author": "Ranjan Shrestha",
"license": "MIT",
"bugs": {
"url": "https://github.com/sharingapples/react-semantic-form/issues"
},
"homepage": "https://github.com/sharingapples/react-semantic-form#readme",
"dependencies": {
"moment": "^2.12.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "^1.15.0",
"express": "^4.13.4",
"express-urlrewrite": "^1.2.0",
"gzip-size": "^3.0.0",
"multer": "^1.1.0",
"pretty-bytes": "^3.0.1",
"react-dom": "^0.14.7",
"rimraf": "^2.5.2",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1"
},
"peerDependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0",
}
}