-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2.11 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
{
"name": "tinacms-plugin-workspace",
"version": "0.0.0",
"description": "Plugin workspace for TinaCMS",
"author": "mmintel",
"private": true,
"license": "MIT",
"website": "https://mintel.me",
"repository": "mmintel/tinacms-condition-field",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "lerna exec --scope tinacms-* -- rollup -c \\$LERNA_ROOT_PATH/rollup.config.js",
"lint": "lerna exec -- eslint src/**/*.js -c \\$LERNA_ROOT_PATH/.eslintrc.js",
"predeploy": "lerna run --scope example build",
"deploy": "gh-pages -d example/public",
"develop": "lerna exec --stream --scope tinacms-* -- rollup -w -c \\$LERNA_ROOT_PATH/rollup.config.js & lerna exec --parallel --scope example -- gatsby develop",
"dev": "npm run develop",
"prerelease": "npm run build",
"release": "lerna publish --conventional-commits"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.1",
"babel-eslint": "^10.0.0",
"babel-preset-gatsby": "^0.4.0",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.4.4",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"gh-pages": "^1.2.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"jest-config": "^25.2.4",
"lerna": "^3.20.2",
"rollup": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"semantic-release": "^17.0.4"
},
"workspaces": [
"packages/*",
"example"
],
"dependencies": {}
}