-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.83 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.83 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
61
62
63
64
65
{
"name": "javascript-group-capstone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest",
"start": "webpack serve --open",
"build": "webpack",
"jlint": "npx eslint .",
"fjlint": "npx eslint --fix .",
"stylelint": "npx stylelint '**/*.css' '**/*.scss'",
"fstylelint": "npx stylelint --fix '**/*.css' '**/*.scss'",
"hint": "npx hint --telemetry=off .",
"fhint": "npx hint --fix --telemetry=off .",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"jest": {
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git@github.com:braincee/JavaScript-Group-Capstone.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/braincee/JavaScript-Group-Capstone/issues"
},
"homepage": "https://github.com/braincee/JavaScript-Group-Capstone.git",
"dependencies": {
"cross-fetch": "^3.1.5",
"lodash": "^4.17.21",
"node-fetch": "^3.2.0",
"package-lock.json": "^1.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.17.12",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"gh-pages": "^3.2.3",
"hint": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"style-loader": "^3.3.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^21.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.21.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
}
}