-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
56 lines (56 loc) · 1.98 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
{
"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.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"@webpack-cli/serve": "^1.6.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.1",
"cssnano": "^4.1.10",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"mini-css-extract-plugin": "^0.9.0",
"mkdirp": "^0.5.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"sass": "1.43.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.0.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.13.0",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-serve": "^4.0.0"
},
"dependencies": {
"stylelint": "^12.0.0"
}
}