-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
89 lines (89 loc) · 3.16 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
{
"name": "formatic",
"version": "2.1.3",
"description": "Automatic, pluggable form generation",
"main": "./build/lib/index.cjs.js",
"module": "./build/lib/index.esm.js",
"files": [
"/build/lib"
],
"scripts": {
"build-docs": "next build && next export -o build-docs",
"build": "rollup -c",
"format": "zapier-scripts format '__tests__/**/*.js' 'demo/**/*.js' 'docs/**/*.js' 'pages/**/*.js' 'src/**/*.js' 'scripts/**/*.js' 'tasks/**/*.js' '*.js'",
"lint": "zapier-scripts lint '__tests__/**/*.js' 'demo/**/*.js' 'docs/**/*.js' 'pages/**/*.js' 'src/**/*.js' 'scripts/**/*.js' 'tasks/**/*.js' '*.js'",
"major-release": "yarn version --major",
"minor-release": "yarn version --minor",
"patch-release": "yarn version --patch",
"prebuild": "rm -rf build && mkdir -p build/lib",
"precommit": "zapier-scripts format-staged",
"prepublish": "yarn build",
"preversion": "",
"postversion": "git push --tags && yarn publish . --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
"publish-docs": "yarn build-docs && touch build-docs/.nojekyll && gh-pages -d build-docs --dotfiles",
"start": "PORT=`get-port 3333` node start-server.js --open",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:zapier/formatic.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@emotion/core": "10.0.7",
"@zeit/next-css": "^1.0.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-emotion": "^10.0.0-beta.0",
"codemirror": "^5.32.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.5",
"express": "^4.16.3",
"get-port-cli": "^2.0.0",
"gh-pages": "^2.0.1",
"isomorphic-unfetch": "^2.1.1",
"jest": "^23.6.0",
"jest-serializer-html": "^6.0.0",
"next": "^8.0.1",
"next-plugin-custom-babel-config": "^1.0.0",
"polished": "^2.3.0",
"raw-loader": "^1.0.0",
"react": "^16.8.2",
"react-dev-utils": "^7.0.3",
"react-dom": "^16.8.2",
"react-powerplug": "^1.0.0",
"react-svg-loader": "^2.1.0",
"react-syntax-highlighter": "^9.0.0",
"rollup": "^1.2.1",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.3.2",
"sanitize.css": "^8.0.0",
"yargs": "^13.2.1",
"zapier-scripts": "^5.0.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.3",
"classnames": "^2.2.5",
"create-react-class": "^15.6.2",
"deep-equal": "^1.0.1",
"immutability-helper": "^2.5.1",
"object-assign": "^2.1.1",
"prop-types": "^15.6.0",
"react-scroll-lock": "git+https://github.com/Laiff/react-scroll-lock.git#267bf5bcf84d334aecc20908657088007b698dc2",
"react-transition-group": "^1.2.1"
},
"peerDependencies": {
"codemirror": ">= 5.32.0",
"react": ">= 0.16",
"react-dom": ">= 16.0.0"
},
"sideEffects": false
}