-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.12 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
{
"private": true,
"name": "malloc",
"description": "Allocation support app",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"eslint": "^5.12.1",
"jest": "^24.0.0",
"lerna": "^3.4.3",
"standard": "^12.0.1"
},
"workspaces": {
"packages": [
"workspaces/*"
]
},
"scripts": {
"setup:dev": "yarn && yarn build",
"test": "yarn lint && yarn jest --colors",
"test:watch": "yarn jest --watch --colors",
"lint": "yarn standard",
"lint:fix": "yarn standard --fix --verbose",
"build": "yarn lerna run build"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**",
"**/lib/**",
"**/es/**"
],
"globals": [
"firebase"
],
"envs": [
"es6",
"browser",
"jest"
]
}
}