-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.61 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "play-scss",
"version": "0.0.1",
"description": "Example react scss playground",
"main": "./src/index.js",
"scripts": {
"start": "webpack-dashboard -- webpack serve --config ./webpack.dev.js",
"dist": "webpack --config ./webpack.dist.js",
"deploy": "webpack --config webpack.prod.js && surge ./dist/ play-scss.surge.sh",
"test:ci": "NODE_ENV=test jest test",
"test": "NODE_ENV=test jest test --notify --watch",
"cleancoverage": "rm -rf coverage",
"prerelease": "npm ci && npm run lint && npm run cleancoverage && npm run check-master && npm run test:ci",
"clean": "rm -rf dist && mkdir dist",
"predist": "npm run clean",
"check-master": "git symbolic-ref --short HEAD | grep ^master$ > /dev/null || (echo \"Not in 'master' branch. Aborting release\"; return 1)",
"changelog": "npm run prerelease && changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:patch": "npm run changelog && npm version patch",
"release:minor": "npm run changelog && npm version minor",
"release:major": "npm run changelog && npm version major",
"prepare": "npm run dist",
"postversion": "git push --follow-tags",
"lint": "eslint . && npm run style-lint",
"lint:fix": "eslint . --fix",
"style-lint": "npx stylelint 'src/**/*.scss' -o styleLintReport.txt",
"style-lint:fix": "npx stylelint 'src/**/*.scss' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pableco/playscss.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [],
"author": "",
"license": "ISC",
"homepage": "https://github.com/pableco/playscss",
"engines": {
"node": ">=10.13.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/runtime-corejs2": "^7.12.5",
"@svgr/webpack": "^5.5.0",
"autoprefixer": "^10.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"generate-changelog": "^1.8.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.6",
"identity-obj-proxy": "^3.0.0",
"ignore-styles": "^5.0.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"postcss": "^8.2.1",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"postcss-smart-import": "^0.7.6",
"prettier": "^2.2.1",
"pretty": "^2.0.0",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^17.0.1",
"sass-lint": "^1.13.1",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.8.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"surge": "^0.21.7",
"webpack": "^5.11.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.2.0",
"webpack-dashboard": "^3.2.1",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.7.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test:ci"
}
}
}