forked from yoksel/grid-cheatsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "grid-cheatsheet",
"version": "1.0.0",
"description": "Grid Cheatsheet",
"scripts": {
"test": "npm run lint",
"build": "webpack --config prod.config.js",
"start": "webpack-dev-server --open",
"deploy": "npm run build && gh-pages -d dist",
"lint": "npm run js:lint && npm run css:lint",
"lint:fix": "npm run js:fix && npm run css:fix",
"js:lint": "eslint src",
"js:fix": "eslint src --fix",
"css:lint": "stylelint **/*.scss",
"css:fix": "stylelint **/*.scss --fix",
"jest": "jest"
},
"author": "yoksel",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:yoksel/grid-cheatsheet.git"
},
"bugs": {
"url": "https://github.com/yoksel/grid-cheatsheet/issues"
},
"homepage": "https://github.com/yoksel/grid-cheatsheet",
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.8.4",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"css-loader": "^3.4.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^5.0.2",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.2",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^19.0.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}