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
37 lines (37 loc) · 999 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 999 Bytes
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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime-corejs3": "^7.8.4",
"babel-plugin-auto-import": "^1.0.5",
"babel-plugin-module-resolver": "^4.0.0",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"nodemon": "^2.0.2",
"typescript": "^3.7.5"
},
"eslintConfig": {
"extends": "@redwoodjs/eslint-config"
},
"eslintIgnore": [
"dist",
"packages/api/importAll.macro.js"
],
"scripts": {
"build": "NODE_ENV=production lerna run build",
"test": "lerna run test --stream -- --colors",
"lint": "yarn eslint './packages/'",
"lint:fix": "yarn eslint --fix './packages/'"
}
}