forked from ably-labs/whiteboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "static-app",
"version": "",
"description": "",
"repository": "http://tempuri.org",
"license": "http://tempuri.org",
"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"
},
"author": "",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@snakemode/snake-canvas": "^1.0.25",
"@types/jest": "^26.0.10",
"ably": "^1.2.1",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"npm-run-all": "^4.1.5",
"snowpack": "^2.9.0",
"typescript": "^4.0.2"
},
"jest": {
"verbose": false,
"testPathIgnorePatterns": [
"/node_modules",
"/tests/acceptance"
]
}
}