-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 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
{
"private": true,
"name": "hush-hush",
"description": "A simple secret sharing app based on Cogito Identity framework.",
"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",
"deploy:web-app": "(cp yarn.lock workspaces/web-app/ && ((now && rm workspaces/web-app/yarn.lock) || rm workspaces/web-app/yarn.lock))"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**",
"**/lib/**",
"**/es/**"
],
"globals": [
"firebase"
],
"envs": [
"es6",
"browser",
"jest"
]
}
}