-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.21 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@pcit/pcit-ui",
"version": "18.12.0-rc.2",
"author": {
"name": "khs1994",
"email": "[email protected]"
},
"description": "PCIT Frontend UI",
"dependencies": {
"@pcit/pcit-js": "^18.12.0-rc.3",
"ansi-to-html": "^0.6.14",
"bootstrap": "^5.0.0-alpha2",
"clipboard": "^2.0.6",
"highlight.js": "^10.2.1",
"jquery": "^3.5.1",
"js-cookie": "^2.2.1",
"json-formatter-js": "^2.3.4",
"popper.js": "^1.16.1",
"vue": "^2.6.12"
},
"devDependencies": {
"@types/jquery": "^3.5.2",
"@types/node": "^14.11.8",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.0",
"css-loader": "^4.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.1.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.0.0",
"prettier": "^2.1.2",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"url-loader": "^4.1.1",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pcit-ce/pcit.git"
},
"scripts": {
"webpack:dev": "cross-env NODE_ENV='development' webpack-cli --mode=development",
"webpack:pro": "cross-env NODE_ENV='production' webpack-cli --mode=production",
"production": "npm run webpack:pro",
"dev": "npm run webpack:dev",
"prettier": "npx prettier --write ./**/*.js ./**/*.ts ./**/*.css",
"yarn:update": "yarn upgrade-interactive --latest",
"build": "npm run webpack:pro",
"fmt": "npm run prettier",
"link-pcit-sdk:dev": "cd %USERPROFILE%/app/pcit-js && npm link && cd %USERPROFILE%/app/pcit/frontend && npm link @pcit/pcit-js",
"unlink-pcit-sdk:dev": "npm unlink @pcit/pcit-js --save-prod && npm i @pcit/pcit-js --save-prod",
"why": "npx npm-why",
"check": "npx npm-check"
},
"license": "MIT",
"keywords": [
"pcit",
"cicd",
"devops"
],
"files": [
"css",
"html",
"images",
"js",
"src",
"webpack.config.js"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}