-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
60
61
62
{
"name": "framingham-react-pwa",
"version": "4.0.0",
"private": true,
"author": "gemanepa",
"repository": {
"type": "git",
"url": "https://github.com/gemanepa/framingham-react-pwa.git"
},
"keywords": [
"JS",
"ES",
"Next",
"React"
],
"dependencies": {
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "latest",
"clsx": "latest",
"next": "^9.3.2",
"next-images": "^1.3.1",
"prop-types": "latest",
"react": "latest",
"react-dom": "latest",
"react-ga": "^2.7.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"babel-eslint": "latest",
"babel-jest": "25.1.0",
"cypress": "^4.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"jest": "25.1.0",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.13.1"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"cy:open": "./node_modules/.bin/cypress open --project tests/e2e",
"cy:run": "./node_modules/.bin/cypress run --project tests/e2e",
"docker:install": "docker build -t framinghamwebapp .",
"docker:dev": "docker run -p 3000:3000 --security-opt apparmor=unconfined framinghamwebapp",
"docker:rebuild": "docker build -t framinghamwebapp .",
"docker:stop": "docker stop framinghamwebapp",
"docker:rm": "docker rm framinghamwebapp",
"lint:check": "eslint . --ext .js && eslint . --ext .jsx",
"lint:fix": "eslint . --ext .js --fix && eslint . --ext .jsx --fix",
"test": "npm run test:u && npm run test:e2e",
"test:u": "jest tests/unitary",
"test:e2e": "npm run cy:run"
}
}