-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.01 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
{
"name": "landing-page",
"version": "1.0.0",
"description": "Codidact Landing Page",
"main": "index.js",
"scripts": {
"lint": "npm run stylelint",
"stylelint": "stylelint \"src/styles/*.scss\"",
"stylelint-fix": "stylelint \"src/styles/*.scss\" --fix",
"remove-assets": "rm -rf ./dist/assets/css && rm -rf ./dist/assets/js && mkdir -p ./dist/assets/css && mkdir -p ./dist/assets/js",
"start": "npm run remove-assets && webpack-dev-server --config ./config/dev.webpack.config.js --mode development",
"build": "npm run remove-assets && webpack --config ./config/prod.webpack.config.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codidact/landing-page.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codidact/landing-page/issues"
},
"homepage": "https://codidact.org",
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/node": "^7.28.0",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/preset-env": "^7.28.0",
"@babel/register": "^7.27.1",
"@webpack-cli/serve": "^3.0.1",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"cssnano": "^7.0.7",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"mini-css-extract-plugin": "^2.9.2",
"mkdirp": "^3.0.1",
"postcss-loader": "^8.1.1",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"sass": "^1.89.2",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"stylelint-config-standard-scss": "^15.0.1",
"stylelint-scss": "^6.12.1",
"webpack": "^5.100.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"stylelint": "^16.21.1"
},
"engines": {
"node": ">= 22.13.1"
}
}