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
36 lines (36 loc) · 873 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 873 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
34
35
36
{
"name": "quave-code-challenge",
"private": true,
"scripts": {
"start": "meteor run --port 3020 --exclude-archs web.browser.legacy,web.cordova",
"cypress": "unset NODE_OPTIONS && cypress open",
"lint": "eslint .",
"pretjs": "prettier --write \"**/*.js\"",
"quality": "yarn lint && yarn pretjs"
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"meteor-node-stubs": "^1.1.0",
"prettier": "^1.18.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
},
"devDependencies": {
"@quave/eslint-config-quave": "^1.0.7",
"@testing-library/cypress": "^9.0.0",
"babel-eslint": "^8.2.2",
"cypress": "^12.3.0",
"eslint": "^4.19.1"
},
"eslintConfig": {
"extends": [
"@quave/quave"
]
}
}