forked from magda-io/magda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"private": true,
"workspaces": [
"deploy",
"magda-*",
"scripts"
],
"eslintIgnore": [
"src/pancake/**"
],
"devDependencies": {
"@types/lodash": "^4.14.74",
"babel-eslint": "^8.2.2",
"eslint": "^4.19.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"glob": "^7.1.2",
"husky": "^0.14.3",
"lerna": "^2.11.0",
"lodash": "^4.17.5",
"prettier": "^1.13.4",
"pretty-quick": "^1.3.0"
},
"scripts": {
"build": "lerna run build --stream --concurrency=1",
"docker-build-local": "lerna run docker-build-local --stream --concurrency=1",
"docker-build-prod": "lerna run docker-build-prod --stream --concurrency=1",
"create-all-tsconfigs": "node ./scripts/create-all-tsconfigs.js",
"in-submodules": "node ./scripts/run-in-submodules.js",
"lerna": "lerna",
"build-changed-ts": "node ./scripts/build-changed.js",
"build-changed-scala": "bash -c \"sbt deployLocalOnChange\"",
"build-changed": "yarn run build-changed-ts && yarn run build-changed-scala",
"prettier": "prettier --write '**/*.js' '**/*.ts' '**/*.json' '!**/regions/**'",
"precommit": "pretty-quick --staged",
"retag-and-push": "lerna run retag-and-push --stream",
"eslint": "./node_modules/.bin/eslint magda-web-client/src/",
"create-secrets": "create-secrets"
},
"pancake": {
"auto-save": true,
"plugins": true,
"ignore": [],
"json": {
"enable": false,
"location": "pancake/",
"name": "pancake",
"content": {
"name": true,
"version": true,
"dependencies": true,
"path": true,
"settings": true
}
},
"js": {
"minified": true,
"modules": false,
"location": "pancake/js/",
"name": "pancake.min.js"
},
"css": {
"minified": true,
"modules": false,
"browsers": [
"last 2 versions",
"ie 8",
"ie 9",
"ie 10"
],
"location": "pancake/css/",
"name": "pancake.min.css"
},
"sass": {
"modules": false,
"location": "pancake/sass/",
"name": "pancake.scss"
},
"react": {
"location": "pancake/react/"
}
}
}