forked from snyk/snyk-apps-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.82 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "snyk-apps-demo",
"version": "1.0.0",
"description": "Demo app to demonstrate Snyk Apps feature",
"main": "index.js",
"scripts": {
"test": "jest",
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "npx tsc",
"postbuild": "ncp ./src/public ./dist/public && ncp ./src/views ./dist/views",
"format": "prettier --write 'src/**/*.ts'",
"dev:ts": "ts-node src/index.ts",
"dev:ts-watch": "nodemon src/index.ts",
"dev": "node dist/index.js",
"dev:watch": "nodemon dist/index.js",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"lint:ejs": "find src/views -type f -iname '*.ejs' -exec bash -c \"./node_modules/.bin/ejslint '{}'\" \\;",
"create-app": "ts-node src/scripts/create-app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snyk/snyk-apps-demo.git"
},
"keywords": [],
"author": "snyk.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/snyk/snyk-apps-demo/issues"
},
"homepage": "https://github.com/snyk/snyk-apps-demo#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/config": "0.0.39",
"@types/cryptr": "^4.0.1",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/express-session": "^1.17.4",
"@types/form-data": "^2.5.0",
"@types/jest": "^27.0.1",
"@types/lowdb": "^1.0.11",
"@types/luxon": "^2.0.4",
"@types/ncp": "^2.0.5",
"@types/node": "^16.9.1",
"@types/passport": "^1.0.7",
"@types/passport-oauth2": "^1.4.11",
"@types/qs": "^6.9.7",
"@types/uuid": "^8.3.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"babel-jest": "^27.2.1",
"ejs-lint": "^1.2.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "^27.2.1",
"ncp": "^2.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"uuid": "^8.3.2",
"yargs": "^17.1.1"
},
"dependencies": {
"@snyk/passport-snyk-oauth2": "^1.0.3",
"axios": "^0.21.4",
"config": "^3.3.7",
"cryptr": "^6.0.2",
"dotenv": "^10.0.0",
"ejs": "^3.1.7",
"envar-check": "0.0.3",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"express-session": "^1.17.2",
"form-data": "^4.0.0",
"helmet": "^4.6.0",
"jwt-decode": "^3.1.2",
"lowdb": "github:dankreiger/lowdb#chore/esm-cjs-hybrid-WITH-LIB",
"luxon": "^2.0.2",
"passport": "^0.4.1",
"passport-oauth2": "^1.6.1",
"qs": "^6.10.1"
},
"nodemonConfig": {
"ignore": [
"db/*"
]
}
}