This repository was archived by the owner on Apr 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.23 KB
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
{
"name": "@code-collabo/styles-library",
"version": "1.0.0",
"description": "Helper less/css library made by Code Collabo community, to be used in any frontend project",
"main": "buildScripts/srcServer.js",
"scripts": {
"prestart": "babel-node buildScripts/customize/startMsg.js",
"start": "npm-run-all --parallel open:src lint:watch",
"open:src": "babel-node buildScripts/srcServer.js",
"lint": "esw webpack.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"clean-dist": "rimraf ./dist && mkdir dist",
"build-dist": "babel-node buildScripts/distServer.js",
"cleanjs": "babel-node clean.js",
"prebuild": "npm-run-all clean-dist",
"build": "babel-node buildScripts/build.js",
"postbuild": "npm-run-all --parallel build-dist cleanjs"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-collabo/styles-library.git"
},
"keywords": [
"css",
"less",
"library",
"helper library",
"css library",
"less library"
],
"author": "Obiagba Mary | Code Collabo Community",
"license": "ISC",
"bugs": {
"url": "https://github.com/code-collabo/styles-library/issues"
},
"homepage": "https://github.com/code-collabo/styles-library#readme",
"dependencies": {
"less": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"@babel/node": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.13.8",
"babel-loader": "^8.2.2",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"css-loader": "^5.2.1",
"eslint": "^7.21.0",
"eslint-plugin-import": "^2.22.1",
"eslint-watch": "^7.0.0",
"express": "^4.17.1",
"html-webpack-plugin": "^5.3.1",
"less-loader": "^10.1.0",
"mini-css-extract-plugin": "^1.4.1",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"open": "^8.0.5",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-md5-hash": "0.0.6",
"webpack-merge": "^5.8.0"
}
}