-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 826 Bytes
/
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
{
"name": "lightningjs-lottie-demo",
"description": "Lottie Demo",
"license": "ISC",
"author": "Philippe Elsass",
"scripts": {
"start": "lng dev",
"build": "lng build"
},
"dependencies": {
"@lightningjs/sdk": "^5.5.0",
"lottie-web": "^5.12.2"
},
"devDependencies": {
"typescript": "^4.7.4",
"@babel/core": "^7.7.2",
"@lightningjs/cli": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"babel-eslint": "^10.0.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"eslint --fix",
"git add"
]
}
}