-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.67 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
{
"name": "vue3-express-ssr-ts",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "./build.sh",
"deploy/aws-lambda": "npm --prefix ./deploy/aws-lambda run deploy",
"dev": "npm --prefix ./deploy/dev run dev",
"lint": "eslint . --ext .js,.ts",
"postinstall": "./install.sh",
"start": "npm --prefix ./deploy/server start",
"test:src": "NODE_ENV=testing mocha './src/backend/{,!(node_modules)/**}/*.test.{,+(js|ts)}'",
"test:deploy": "NODE_ENV=testing mocha './deploy/*/{,!(node_modules)/**}/*.test.{,+(js|ts)}'"
},
"repository": "https://github.com/someimportantcompany/starter-templates",
"bugs": "https://github.com/someimportantcompany/starter-templates/issues",
"homepage": "https://github.com/someimportantcompany/starter-templates",
"author": "jdrydn <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.200",
"@types/mocha": "^10.0.3",
"@types/node": "^16.18.59",
"@types/supertest": "^2.0.15",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"aws-cdk": "^2.102.0",
"aws-cdk-lib": "^2.102.0",
"constructs": "^10.3.0",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-mocha": "^10.2.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.x",
"npm": ">=8.x"
},
"mocha": {
"exit": true,
"recursive": true,
"require": [
"ts-node/register"
],
"reporter": "spec"
}
}