-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.95 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.95 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
{
"name": "cssville-ui",
"version": "0.9.3",
"description": "",
"files": [
"LICENSE.md",
"build/components/ui",
"cssville-ui.bundle.css"
],
"scripts": {
"build:prod": "cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack",
"build:ts": "tsc",
"build:modifyCss": "node modifyCss.js",
"watch:build:prod": "cross-env NODE_ENV=production webpack --watch",
"watch:build:dev": "cross-env NODE_ENV=development webpack --watch",
"watch:server": "lite-server -c lite-server-config.json",
"start:prod": "npm-run-all build:prod build:ts --parallel watch:build:prod watch:server --print-label",
"start:dev": "npm-run-all build:dev build:ts --parallel watch:build:dev watch:server --print-label"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssville/cssville-web.git"
},
"keywords": [
"css",
"framework"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cssville/cssville-web/issues"
},
"homepage": "https://github.com/cssville/cssville-web#readme",
"dependencies": {
"cssville": "^0.9.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0"
},
"devDependencies": {
"@types/highlight.js": "^10.1.0",
"@types/node": "^16.6.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"express": "^4.18.2",
"glob-all": "^3.3.1",
"highlight.js": "^11.7.0",
"lite-server": "^2.6.1",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"purgecss-webpack-plugin": "^5.0.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
}
}