forked from lightning-js/blits-example-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "@lightningjs/blits-example-app",
"version": "1.6.0",
"description": "Lightning 3 Blits Example App",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npm run dev",
"start:test": "NODE_ENV=testing npm run dev",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"build": "vite build",
"dev": "vite dev --host",
"test": "NODE_ENV=testing backstop --config=backstop.cjs test",
"test:reference": "NODE_ENV=testing backstop --config=backstop.cjs reference"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "Michiel van der Geest <[email protected]>",
"license": "Apache-2",
"devDependencies": {
"backstopjs": "^6.3.22",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"playwright": "^1.41.0",
"prettier": "^2.5.1",
"shaka-player": "^4.7.1",
"vite": "^4.0.4"
},
"dependencies": {
"@lightningjs/blits": "^1.9.1"
}
}