-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "physiome-submission",
"version": "0.1.0",
"private": true,
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.1",
"camunda-bpm-sdk-js": "^7.7.4-SNAPSHOT",
"concurrently": "^4.1.0",
"config": "^2.0.1",
"eslint": "^5.12.1",
"eslint-config-pubsweet": "^0.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"lerna": "^3.10.6",
"lint-staged": "^8.1.0",
"pegjs": "^0.10.0",
"yo": "^2.0.5"
},
"scripts": {
"clean": "lerna clean && rm -rf node_modules",
"lint": "eslint packages",
"migrate": "cd packages/app && ./node_modules/.bin/pubsweet migrate",
"preserver": "yarn migrate",
"prestart": "yarn migrate",
"server": "cd packages/app && yarn server",
"start": "cd packages/app && node app.js",
"test": "lerna run test",
"dsl-compile": "pegjs -o dsl/wfd-dsl.js dsl/wfd-dsl.pegjs",
"desc": "node dsl/compile.js definitions/physiome-submission.wfd packages/app/config/description.json",
"build" : "cd packages/app && NODE_ENV=production npx pubsweet build"
},
"engines": {
"node": ">=8",
"yarn": ">=1.12"
},
"workspaces": [
"packages/*"
]
}