-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.3 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
{
"private": true,
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.1",
"pm2": "^4.2.3",
"standard": "^14.3.3"
},
"workspaces": {
"packages": [
"workspaces/*"
]
},
"scripts": {
"setup:dev": "yarn && yarn build",
"test": "yarn lint && yarn jest --colors",
"test:watch": "yarn jest --watch --colors",
"lint": "yarn standard --verbose",
"lint:fix": "yarn standard --fix --verbose",
"build": "yarn lerna run build --scope @identity-box/**"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**",
"**/public/**",
"**/.cache/**",
"**/.next/**",
"**/lib/**",
"**/es/**",
"workspaces/api/index.js",
"tools/build.js",
"workspaces/homepage/src/@confluenza/**/themes",
"workspaces/homepage/src/@confluenza/**/semantic.*"
],
"envs": [
"es6",
"browser",
"jest"
]
}
}