forked from danott/react-rails-form-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "react-rails-form-helpers",
"version": "0.1.0-beta.15",
"description": "Build forms that will be submitted to Rails in React.",
"main": "lib/index.js",
"repository": "danott/react-rails-form-helpers",
"keywords": [
"react",
"rails",
"forms"
],
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build:dist": "NODE_ENV=production webpack",
"build:lib": "babel ./src --out-dir ./lib --stage 0",
"dev:dist": "NODE_ENV=production webpack --watch",
"dev:lib": "babel ./src --out-dir ./lib --stage 0 --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "eslint --ext=js,jsx --fix src",
"prepublish": "npm run build"
},
"files": [
"dist",
"lib",
"src"
],
"author": "Dan Ott <[email protected]> (https://danott.co)",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^4.5.0",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.3.0",
"prettier": "^1.6.1",
"react": "^15.0.1",
"webpack": "^1.13.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
],
"plugins": [
"transform-object-assign"
]
},
"dependencies": {
"eslint-config-prettier": "^2.3.0",
"prop-types": "^15.5.10"
}
}