forked from rdkcentral/firebolt-certification-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.8 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
57
{
"version": "1.0.0",
"name": "firebolt-certification",
"description": "Reference App to demonstrate Firebolt APIs and Lifecycle",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@firebolt-js/manage-sdk": "1.0.0",
"@firebolt-js/sdk": "1.0.0",
"@lightningjs/core": "*",
"@lightningjs/sdk": "^5.0.1",
"@lightningjs/ui-components": "^2.2.2",
"dotenv": "^14.2.0",
"enhanced-resolve": "5.12.0",
"eventemitter3": "^5.0.1",
"glob": "^8.1.0",
"glob-parent": "^5.1.2",
"json-schema-ref-parser": "^9.0.9",
"jsonschema": "^1.4.0",
"lzutf8": "0.6.0",
"perf_hooks": "^0.0.1",
"rxjs": "7.2.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"xml2js": "^0.5.0"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js",
"test": "jest --config test/jest.config.js",
"testCoverage": "NODE_ENV=test jest --config test/jest.config.js",
"postinstall": "npm update @firebolt-js/manage-sdk",
"format": "prettier --write \"**/*.js\"",
"lint": "eslint ."
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-jest": "^27.4.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"file-loader": "^4.1.0",
"git-revision-webpack-plugin": "^3.0.6",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"jest": "^27.4.5",
"prettier": "^3.0.3",
"standard": "*",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}