-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.47 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
49
50
51
52
53
54
55
56
{
"name": "lightning-ui-tmdb",
"version": "0.0.0",
"description": "",
"main": "src/index.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.js": [
"npm run lint"
]
},
"scripts": {
"cypress": "cypress open",
"lint": "npx prettier --check './src/**/*.js'",
"lint:fix": "npx prettier --write './src/**/*.js'",
"start": "cross-env LNG_LIVE_RELOAD=true LNG_LIVE_RELOAD_PORT=8991 lng dev",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:ComcastSamples/lightning-ui-tmdb.git"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@lightningjs/core": "^2.8.0",
"@lightningjs/sdk": "5.2.0",
"@lightningjs/ui-components": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-decorators": "^7.15.1",
"@babel/preset-env": "^7.15.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"cypress": "^9.6.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"jest": "^27.2.0",
"jest-fetch-mock": "^3.0.3",
"jest-webgl-canvas-mock": "^0.2.3",
"lint-staged": "^12.1.2",
"prettier": "^2.2.1"
}
}