-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.38 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
{
"name": "react-formative",
"version": "0.1.0",
"description": "Display form items sequentially. It's like if Typeform had an illegitimate child with a slideshow.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:clean && npm run build:js && npm run build:css && npm run build:assets",
"build:clean": "rm -rf lib/*",
"build:css": "cp src/css/*.css lib",
"build:assets": "cp -rf src/assets lib",
"build:js": "node_modules/@babel/cli/bin/babel.js src --out-dir lib",
"watch": "npm-watch"
},
"watch": {
"build:js": "src/**/*.js",
"build:css": {
"patterns": [
"src/css"
],
"extensions": "css"
},
"build:assets": {
"patterns": [
"src/assets"
],
"extensions": [
"svg"
]
}
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-flow"
],
"plugins": [
"@babel/plugin-transform-react-jsx",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings"
]
},
"repository": {
"type": "git",
"url": "https://github.com/eurobob/react-formative.git"
},
"author": "Rob Matwiejczyk",
"license": "ISC",
"bugs": {
"url": "https://github.com/eurobob/react-formative/issues"
},
"homepage": "https://github.com/eurobob/react-formative#readme",
"dependencies": {
"eslint": "^5.11.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"immutability-helper": "^2.6.6",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-svg": "^8.0.6",
"react-transition-group": "^2.5.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint-plugin-flowtype": "^3.2.0",
"flow-bin": "^0.89.0",
"npm-watch": "^0.3.0",
"prettier": "^1.15.3"
}
}