-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "materialsmine",
"displayName": "Materialsmine Platform Manager",
"version": "1.0.0",
"author": "Fateye Tolulomo J.",
"contributors": [
""
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Duke-MatSci/materialsmine"
},
"engines": {
"npm": ">=5.6.x"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"semantic-release": "^20.1.0"
},
"materialsmine": {
"app-desc": {
"appId": "@APPID@",
"name": "Materialsmine Platform Manager",
"version": "@APP_VER",
"sha": "@APP_SHA@",
"branch": "@APP_BRANCH@"
}
},
"scripts": {
"syncdb": "bash resfulservice/misc/syncdb.sh",
"prepare": "husky install",
"lint:frontend": "(cd app && npm run lint:test)",
"lint:server": "(cd resfulservice && npm run lint:test)",
"test": "npm-run-all -s lint:frontend lint:server",
"dev:re-install": "./install re-install",
"dev:install": "./install install",
"dev:start": "docker compose up",
"dev:stop": "docker compose down -v"
}
}