This repository has been archived by the owner on Dec 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2 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
57
58
59
60
61
62
63
{
"name": "php2-assignment",
"version": "0.0.1",
"description": "The PHP 2 assignment of InHolland.",
"engines": {
"node": "16"
},
"scripts": {
"clean": "rm dist/bundle.js",
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"start": "webpack --mode production",
"lint:js": "eslint --fix --cache --ext \".ts\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.scss\" --fix --cache --ignore-path .gitignore",
"lint:php": "./vendor/bin/phpmd ./controller/,./db/,./model/,./public/,./view/ ansi phpmd.xml",
"lint:phplint": "./vendor/bin/phplint",
"lint": "npm run lint:js && npm run lint:style && npm run lint:phplint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mtDvlpr/php2-assignment.git"
},
"author": "Manoah Tervoort",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mtDvlpr/php2-assignment/issues"
},
"homepage": "https://github.com/mtDvlpr/php2-assignment#readme",
"authors": [
{
"name": "Manoah Tervoort",
"social": "",
"url": "https://github.com/mtDvlpr"
}
],
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"faker": "^5.5.3",
"mini-css-extract-plugin": "^2.4.5",
"node-sass": "^7.0.1",
"postcss-scss": "^4.0.2",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"stylelint": "14.2.0",
"stylelint-8-point-grid": "2.1.0",
"stylelint-config-recommended": "6.0.0",
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-config-standard": "24.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}