282759c0e5
In preparation for Europa, we will vendor multiple CUE modules: - `pkg/alpha.dagger.io`: legacy non-europa packages - `pkg/dagger.io`: core Europa packages - `pkg/universe.dagger.io`: Europa universe Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
23 lines
426 B
JSON
23 lines
426 B
JSON
{
|
|
"name": "test",
|
|
"version": "1.0.0",
|
|
"description": "A simple api",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "ts-node index.ts",
|
|
"test": "test"
|
|
},
|
|
"author": "Tom Chauveau",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"ts-node": "^8.9.1",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@types/express": "^4.17.6",
|
|
"env-var": "^6.1.1",
|
|
"express": "^4.17.1"
|
|
}
|
|
}
|