-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 1.03 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
{
"name": "optimizely-starter-kit-for-fastly-compute",
"version": "0.2.0",
"description": "This is an optimizely starter kit for fastly edge workers",
"main": "src/index.js",
"scripts": {
"prebuild": "webpack",
"build": "js-compute-runtime --skip-pkg bin/index.js bin/main.wasm",
"deploy": "npm run build && fastly compute deploy",
"dev": "nodemon --exec \"npm run build && fastly compute serve --skip-build\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/optimizely/fastly-compute-starter-kit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/optimizely/fastly-compute-starter-kit/issues"
},
"homepage": "https://github.com/optimizely/fastly-compute-starter-kit#readme",
"devDependencies": {
"core-js": "^3.15.2",
"nodemon": "^2.0.14",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@fastly/js-compute": "^0.2.0",
"@optimizely/optimizely-sdk": "^4.9.1",
"cookie": "^0.4.2",
"uuid": "^8.3.2"
}
}