-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.29 KB
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
{
"name": "jsandco-website",
"private": true,
"scripts": {
"start": "meteor run --exclude-archs web.browser.legacy --settings settings.json",
"test": "yarn lint",
"lint": "eslint --ext .js,.jsx --cache .",
"lint:fix": "eslint --ext .js,.jsx --cache --fix .",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"1-liners": "^0.4.2",
"@babel/runtime": "^7.8.4",
"babel-eslint": "^10.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"husky": "^4.2.5",
"meteor-node-stubs": "^1.0.0",
"react": "^16.13.0",
"react-animations": "^1.0.0",
"react-dom": "^16.13.0",
"react-hammerjs": "^1.0.1",
"react-motion": "^0.5.2",
"react-reveal": "^1.2.2",
"react-reveal-text": "^0.1.1",
"react-router-dom": "^5.2.0",
"react-toastify": "^6.0.8",
"semantic-ui-react": "^1.0.0",
"simpl-schema": "^1.9.0",
"styled-components": "^5.1.1"
},
"meteor": {
"mainModule": {
"client": "client/main.jsx",
"server": "server/main.js"
}
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8"
}
}