-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
65 lines (65 loc) · 2.14 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
{
"name": "carbon-for-ibm-dotcom-tutorial",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "webpack --config ./config/webpack-prod.config.js",
"ci-check": "yarn lint && yarn lint:styles",
"clean": "rimraf dist",
"lint": "eslint src",
"lint:styles": "stylelint **/*.{css,scss}",
"start": "webpack serve --config ./config/webpack-dev.config.js",
"test": "start-server-and-test 'http-server -c-1 dist --silent' 8080 'cypress run'"
},
"devDependencies": {
"@actions/core": "^1.2.6",
"@babel/core": "^7.1.2",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.1.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@webpack-cli/serve": "^1.5.2",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.0.4",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^1.0.1",
"cypress": "^9.1.1",
"cypress-wait-until": "^1.7.2",
"dotenv": "^8.2.0",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^5.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsdoc": "^30.6.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-tree-shaking": "^1.9.2",
"eslint-restricted-globals": "^0.2.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^4.5.1",
"http-server": "^14.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^0.11.0",
"postcss": "^8.3.6",
"postcss-loader": "4.2.0",
"postcss-selector-parser": "^6.0.6",
"prettier": "^2.1.2",
"sass": "^1.41.0",
"sass-loader": "^10.2.0",
"start-server-and-test": "^1.14.0",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^4.0.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.20.1",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0"
}
}