-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "mvp",
"version": "1.0.0",
"description": "Frontend application for MVP ecommerce using javascript.",
"main": "index.js",
"scripts": {
"lint:fix": "eslint \"src/**/*.js\" --fix",
"lint": "eslint \"src/**/*.js\"",
"prettier": "prettier --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack serve",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,css,md}": [
"yarn prettier",
"yarn lint:fix",
"yarn lint"
]
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/openclassrooms10/webdevpath_p5.git"
},
"keywords": [
"ecommerce",
"javascript",
"frontend"
],
"author": "Leo Grambert",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/openclassrooms10/webdevpath_p5/issues"
},
"homepage": "https://gitlab.com/openclassrooms10/webdevpath_p5#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@types/node": "^16.7.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"tailwind-toast": "^1.1.0",
"webpack-serve": "^4.0.0"
}
}