-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·97 lines (97 loc) · 3.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "el-checklist",
"author": "EL Passion",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/core": "10.0.22",
"emotion-theming": "10.0.19",
"localforage": "1.7.3",
"lodash": "4.17.15",
"polished": "3.4.2",
"react": "16.8.6",
"react-animate-height": "2.0.17",
"react-dom": "16.8.6",
"react-markdown": "4.2.2",
"react-router-dom": "5.0.1",
"react-scripts": "3.0.1"
},
"scripts": {
"generate:data": "node scripts/prepareContent.js",
"create:task": "node scripts/createTask.js",
"start": "npm run generate:data && react-scripts start",
"build": "npm run generate:data && react-scripts build",
"test": "npm run generate:data && react-scripts test --coverage --watchAll=false",
"test:watch": "npm run test -- --watchAll --watch",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"lint:js:fix": "eslint --ext .js,.jsx,.ts,.tsx ./src --fix",
"lint:tools": "eslint --ext .js,.jsx,.ts,.tsx ./tools",
"lint:tools:fix": "eslint --ext .js,.jsx,.ts,.tsx ./tools --fix",
"lint:cy": "eslint --ext .js,.jsx,.ts,.tsx ./cypress",
"lint:cy:fix": "eslint --ext .js,.jsx,.ts,.tsx ./cypress --fix",
"lint:all": "npm-run-all --parallel lint:js lint:tools lint:cy",
"lint:all:fix": "npm-run-all --parallel lint:js:fix lint:tools:fix lint:cy:fix",
"ts": "tsc -p ./tsconfig.json",
"ts:watch": "npm run ts --watch",
"e2e:dev": "npm-run-all --parallel start cy:open",
"pree2e": "npm run build",
"e2e": "npm-run-all --parallel --race start cy:run",
"cy:open": "npm run generate:data && cypress open",
"cy:run": "npm run generate:data && cypress run",
"eject": "react-scripts eject"
},
"devDependencies": {
"@testing-library/cypress": "4.0.4",
"@testing-library/react": "8.0.4",
"@testing-library/react-hooks": "1.1.0",
"@types/jest": "24.0.15",
"@types/lodash": "4.14.136",
"@types/node": "12.6.1",
"@types/react": "16.8.23",
"@types/react-dom": "16.8.4",
"@types/react-router-dom": "4.3.4",
"@typescript-eslint/eslint-plugin": "1.11.0",
"@typescript-eslint/parser": "1.11.0",
"chalk": "^3.0.0",
"cypress": "3.4.1",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jest": "22.7.2",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.2",
"eslint-plugin-react-hooks": "1.6.1",
"mkdirp": "0.5.1",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"react-test-renderer": "16.8.6",
"remove-markdown": "0.3.0",
"typescript": "3.5.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,ts,tsx}",
"!src/**/*.d.ts",
"!src/**/*.styles.ts",
"!src/@types/**/*",
"!src/styling/**/*",
"!src/config/**/*",
"!src/index.tsx"
]
}
}