-
-
Notifications
You must be signed in to change notification settings - Fork 708
/
package.json
56 lines (56 loc) · 1.64 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": "mvp",
"type": "module",
"version": "0.4.0",
"engines": {
"node": ">=14.16"
},
"description": "The elementary.io Website http://elementary.io",
"dependencies": {
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"core-js": "^3.39.0",
"cssnano": "^7.0.6",
"glob": "^11.0.0",
"gulp": "^4.0.2",
"gulp-cached": "^1.1.1",
"gulp-changed": "^5.0.2",
"gulp-imagemin": "^9.1.0",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"gulp-rev": "^11.0.0",
"postcss-preset-env": "^10.1.1",
"scriptjs": "^2.5.9",
"webpack": "^5.96.1",
"webpack-manifest-plugin": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1"
},
"scripts": {
"install:submodule": "git submodule init && git submodule update --force --rebase",
"install:composer": "cd _backend && composer install",
"postinstall": "npm run install:submodule && npm run install:composer",
"lint": "sh _tests/css.sh && sh _tests/javascript.sh && sh _tests/php.sh",
"build": "gulp",
"start": "php -S 0.0.0.0:8000 router.php",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elementary/website.git"
},
"author": "elementary",
"license": "MIT",
"bugs": {
"url": "https://github.com/elementary/website/issues"
},
"homepage": "https://github.com/elementary/website#readme"
}