forked from redwoodjs/redwood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"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",
"ignorePatterns": [
"fixtures"
]
},
"eslintIgnore": [
"dist",
"packages/api/importAll.macro.js"
],
"scripts": {
"build": "yarn build:clean && yarn build:js && yarn build:types",
"build:clean": "lerna run build:clean",
"build:js": "cross-env NODE_ENV=production lerna run build",
"build:types": "tsc --build --clean && tsc --build",
"build:watch": "lerna run build:watch --parallel",
"test": "lerna run test --stream -- --colors",
"lint": "yarn eslint packages",
"lint:fix": "yarn eslint --fix packages"
}
}