-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "static-app",
"version": "",
"description": "",
"repository": "http://tempuri.org",
"license": "http://tempuri.org",
"scripts": {
"prestart": "npm run copydeps",
"copydeps": "node build.js",
"start": "run-p dev:api dev:server",
"test": "jest --runInBand",
"test:acceptance": "jest acceptance --runInBand",
"dev:api": "npm run start --prefix api",
"dev:server": "npx live-server app --proxy=/api:http://127.0.0.1:7071/api",
"dev:server:test": "npx live-server app --proxy=/api:http://127.0.0.1:7071/api --no-browser --quiet",
"acceptance": "run-p dev:server:test dev:api test:acceptance",
"build:azure": "npm run copydeps"
},
"author": "",
"dependencies": {
"@snakemode/snake-canvas": "^1.0.7"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.3.0"
},
"jest": {
"verbose": false,
"testPathIgnorePatterns": [
"/node_modules",
"/tests/acceptance"
]
}
}