forked from ably-labs/decorate-a-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "festive2020",
"version": "1.0.0",
"description": "Stick things on trees!",
"main": "app/index.js",
"scripts": {
"prestart": "cd api && npm install",
"start": "run-p dev:api dev:server",
"test": "jest",
"test:acceptance": "jest acceptance --runInBand",
"dev:api": "npm run start --prefix api",
"dev:server": "npx snowpack dev",
"build:azure": "npx snowpack build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snakemode/festive2020.git"
},
"keywords": [
"christmas",
"decorate"
],
"author": "Jo Franchetti, David Whitney",
"license": "MIT",
"bugs": {
"url": "https://github.com/snakemode/festive2020/issues"
},
"homepage": "https://github.com/snakemode/festive2020#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@types/jest": "^26.0.19",
"ably": "^1.2.4",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"npm-run-all": "^4.1.5",
"snowpack": "^2.18.4",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@snowpack/plugin-run-script": "^2.2.1",
"html2canvas": "^1.0.0-rc.7",
"uuid": "^8.3.2"
}
}