-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.78 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
{
"name": "mv-modules2-capstone",
"version": "1.0.0",
"description": "",
"private": "true",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack serve --open",
"lint:js": "eslint ./src/**/*.js",
"lint:css": "stylelint ./src/*.{css,scss}",
"lintFix:js": "eslint ./src/**/*.js --fix",
"lintFix:css": "stylelint ./src/*.{css,scss} --fix",
"test": "jest",
"test:watch": "jest --watch",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sboursen/mv-modules2-capstone.git"
},
"keywords": [],
"author": "Sboursen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sboursen/mv-modules2-capstone/issues"
},
"homepage": "https://github.com/Sboursen/mv-modules2-capstone#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@types/jest": "^27.4.1",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.4",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"mini-css-extract-plugin": "^2.5.3",
"postcss": "^8.4.7",
"postcss-loader": "^6.2.1",
"style-loader": "^3.3.1",
"stylelint": "^14.5.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-csstree-validator": "^2.0.0",
"stylelint-scss": "^4.1.0",
"tailwindcss": "^3.0.23",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@babel/runtime": "^7.17.2"
}
}