-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "sedona-components",
"version": "4.10.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/getsedona/sedona-components.git"
},
"homepage": "https://github.com/getsedona/sedona-components#readme",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack",
"start": "cd docs && static-server",
"eslint": "eslint '**/*.js' --ignore-pattern .gitignore --ignore-pattern docs/",
"eslint:fix": "eslint --fix '**/*.js' --ignore-pattern .gitignore --ignore-pattern docs/",
"stylelint": "stylelint '**/*.less'",
"stylelint:fix": "stylelint --fix '**/*.less'",
"lint": "npm run eslint & npm run stylelint",
"lint:fix": "npm run eslint:fix & npm run stylelint:fix"
},
"dependencies": {
"focus-visible": "^5.0.2",
"mobile-detect": "^1.4.4"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"autoprefixer": "^9.7.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"html-layout-plugin": "^0.0.1",
"html-webpack-plugin": "^3.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"style-loader": "^1.1.3",
"stylelint": "^13.2.1",
"stylelint-config-sedona": "^1.0.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}