forked from scena360/sim360
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 868 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 868 Bytes
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
{
"name": "sim360",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:scena360/sim360.git",
"author": "Scena 360 <info@scena360.com>",
"license": "MIT",
"private": true,
"dependencies": {
"playwright-aws-lambda": "^0.7.0",
"playwright-core": "^1.17.1"
},
"scripts": {
"build": "tsc",
"build:clean": "yarn run clean && tsc",
"build:watch": "tsc -w",
"start:docker": "npx playwright install && npm start",
"start": "node build/index.js",
"build:run": "yarn run build && yarn start",
"clean": "rm -rf build tsconfig.tsbuildinfo || true"
},
"devDependencies": {
"@playwright/test": "^1.16.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"playwright": "^1.16.3",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}