forked from redwoodjs/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime-corejs3": "^7.9.2",
"babel-plugin-auto-import": "^1.0.5",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"jest": "^25.2.3",
"lerna": "^3.20.2",
"nodemon": "^2.0.2",
"typescript": "^3.8.3"
},
"eslintConfig": {
"extends": "@redwoodjs/eslint-config"
},
"eslintIgnore": [
"dist",
"packages/api/importAll.macro.js"
],
"scripts": {
"build": "yarn cross-env NODE_ENV=production lerna run build",
"test": "lerna run test --stream -- --colors",
"lint": "yarn eslint packages",
"lint:fix": "yarn eslint --fix packages"
}
}