-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.19 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": "ThunderUI",
"version": "0.3.0",
"description": "Web Platform for Embedded Framework User Interface",
"main": "debug-server.js",
"scripts": {
"postinstall": "test -e .env.local || cp .env.example .env.local",
"build": "NODE_ENV=production webpack",
"watch": "webpack --watch",
"local": "webpack",
"serve": "http-server ./local -o -c-1",
"start": "concurrently 'npm run watch' 'npm run serve'"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist"
}
},
"dependencies": {
"ansi-to-html": "^0.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdkcentral/ThunderUI.git"
},
"bugs": {
"url": "https://github.com/rdkcentral/ThunderUI/issues"
},
"homepage": "https://github.com/rdkcentral/ThunderUI#readme",
"author": "",
"license": "ISC",
"devDependencies": {
"ThunderJS": "github:rdkcentral/ThunderJS#v1.2.4",
"concurrently": "^5.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"dotenv-webpack": "^1.7.0",
"http-server": "^0.12.1",
"husky": "^4.2.3",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}