forked from isabella232/paf-mvp-demo-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.33 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
97
98
99
100
101
102
103
104
105
{
"name": "paf-mvp-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-front": "npm run build --prefix paf-mvp-frontend",
"build-cmp": "npm run build --prefix paf-mvp-demo-express",
"start:watch": "nodemon --debug .",
"###########": "FYI: Google cloud console automatically runs these scripts after deploy:",
"gcp-build": "npm run build-front && npm run build-cmp",
"start": "npm run start --prefix paf-mvp-demo-express"
},
"repository": {
"type": "git",
"url": "git+https://github.com/criteo/paf-mvp-demo-express.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/criteo/paf-mvp-demo-express/issues"
},
"homepage": "https://github.com/criteo/paf-mvp-demo-express#readme",
"dependencies": {
"@preact/compat": "^17.0.3",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.10",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^8.3.4",
"@types/vhost": "^3.0.4",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"ec-key": "^0.0.4",
"ecdsa-secp256r1": "^1.3.3",
"express": "^4.17.2",
"express-hbs": "^2.4.0",
"json-schema-to-ts": "^1.6.5",
"module-alias": "^2.2.2",
"nodemon": "^2.0.15",
"preact": "^10.5.15",
"preact-habitat": "^3.3.0",
"tld-extract": "^2.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"ua-parser-js": "^1.0.2",
"uuid": "^8.3.2",
"vhost": "^3.0.2",
"winston": "^3.4.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.1",
"@types/express-serve-static-core": "^4.17.28",
"@types/json-schema": "^7.0.9",
"@types/react": "^17.0.35",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"autoprefixer": "^10.4.0",
"eslint": "7.19.0",
"eslint-config-preact": "^1.2.0",
"json-schema-to-typescript": "^10.1.5",
"jsonschema": "^1.4.0",
"postcss": "^8.3.11",
"postcss-initial": "^3.0.4",
"prettier": "^2.4.1",
"rollup": "^2.59.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-preact": "^0.5.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"sass": "^1.43.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"typescript-plugin-css-modules": "^3.4.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"_moduleAliases": {
"@core": "paf-mvp-core-js/src",
"@operator": "paf-mvp-operator-express/src",
"@operator-client": "paf-mvp-operator-client-express/src",
"@frontend": "paf-mvp-frontend/src"
}
}