-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
{
"name": "@alkemio/demo",
"version": "0.5.1",
"description": "Demo of setting up and populating an instance of the Alkemio platform",
"author": "Alkemio Foundation",
"private": false,
"license": "EUPL-1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"alkemio-demo": "dist/index.js"
},
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"prebuild": "npm run clean",
"postbuild": "npm run gulp postBuild",
"gulp": "gulp",
"clean": "rimraf ./dist",
"format": "prettier --write src/**/*.ts",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"lint:fix": "tsc --noEmit && eslint src/**/*.ts{,x} --fix",
"nodemon": "nodemon",
"sample-data": "ts-node-dev src/scripts/sample-data.ts",
"start": "ts-node src/index.ts",
"start:demo": "docker-compose --env-file .env.docker up --build --force-recreate",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alkem-io/demo.git"
},
"bugs": {
"url": "https://github.com/alkem-io/demo/issues"
},
"homepage": "https://github.com/alkem-io/demo#readme",
"devDependencies": {
"@types/node": "^14.6.0",
"copyfiles": "^2.4.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.2",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.7"
},
"dependencies": {
"@alkemio/client-lib": "^0.12.1",
"@alkemio/populator": "^0.7.0",
"chalk": "^4.1.0",
"commander": "^6.2.1",
"dotenv": "^8.2.0",
"jsonpath": "^1.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.2",
"winston": "^3.3.3"
},
"engines": {
"node": ">=14.17.3"
}
}