forked from quavedev/code-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 822 Bytes
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
{
"name": "quave-code-challenge",
"private": true,
"scripts": {
"start": "meteor run",
"cypress": "unset NODE_OPTIONS && cypress open",
"lint": "eslint .",
"pretjs": "prettier --write \"**/*.js\"",
"quality": "yarn lint && yarn pretjs"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"@material-ui/core": "^4.11.2",
"meteor-node-stubs": "^1.0.1",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-perfect-scrollbar": "^1.5.8"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
},
"devDependencies": {
"@quave/eslint-config-quave": "^1.0.3",
"@testing-library/cypress": "^5.0.2",
"babel-eslint": "^8.2.2",
"cypress": "^3.4.1",
"eslint": "^4.19.1"
}
}