forked from cesium/opal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
{
"name": "opal",
"version": "braga-2020",
"private": true,
"scripts": {
"dev": "next dev",
"lint": "eslint --fix --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write './**/*.{css,js,json,md}'",
"fmt": "npm-run-all format",
"test": "npm-run-all test:*",
"test:lint": "eslint --ignore-path .gitignore .",
"test:format": "prettier --ignore-path .gitignore --check './**/*.{css,js,json,md}'",
"build": "next build",
"export": "next export",
"deploy": "npm-run-all build export",
"start-local": "next start -p 3000",
"start": "next start -p $PORT"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all lint format"
}
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"clsx": "^1.1.1",
"dotenv": "^8.2.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^10.0.5",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-countdown-now": "^2.1.2",
"react-dom": "^16.9.0",
"react-player": "^1.15.3",
"react-scroll": "^1.8.0",
"react-slick": "^0.25.2",
"react-slugify": "^2.0.1",
"slick-carousel": "^1.8.1",
"webpack": "^4.44.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1"
}
}