generated from cristianCeamatu/template-jest-webpack-eslint-stylelint
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.92 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
{
"name": "template-eslint-stylelint",
"version": "1.0.0",
"description": "node_modules/",
"private": true,
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll --testPathPattern=__tests__/api.test.js",
"eslint": "eslint .",
"stylelint": "stylelint \"**/*.scss\"",
"fix": "stylelint --fix \"**/*.scss\" && eslint . --fix",
"linters": "npm run fix && npm run stylelint && npm run eslint && echo '🎉 All test pass 🎉'",
"build": "webpack --mode=production",
"watch": "webpack --watch --mode=development",
"dev": "webpack-dev-server --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cristianCeamatu/template-eslint-stylelint.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cristianCeamatu/template-eslint-stylelint/issues"
},
"homepage": "https://github.com/cristianCeamatu/template-eslint-stylelint#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@testing-library/jest-dom": "^5.11.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.1",
"css-loader": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"file-loader": "^6.1.0",
"jest": "^26.5.3",
"node-sass": "^4.14.1",
"regenerator-runtime": "^0.13.7",
"sass": "^1.26.12",
"sass-loader": "^10.0.2",
"style-loader": "^1.3.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.8.0",
"stylelint-scss": "^3.17.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.20.0",
"bootstrap": "^4.5.2",
"express": "^4.17.1",
"jquery": "^3.5.1",
"phaser": "^3.24.1",
"phaser3-rex-plugins": "^1.1.31",
"popper.js": "^1.16.1"
}
}