This repository was archived by the owner on Sep 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.68 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.68 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
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
{
"name": "material-ui-appframe",
"description": "Responsive application frame for Material UI web applications",
"version": "0.1.12",
"main": "index.js",
"author": "Sysart Oy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sysart/material-ui-appframe.git"
},
"devDependencies": {
"@material-ui/core": "^3.6.0",
"@material-ui/icons": "^3.0.1",
"@types/classnames": "^2.2.6",
"@types/expect-puppeteer": "^3.3.0",
"@types/jest-environment-puppeteer": "^2.2.1",
"@types/material-ui": "^0.21.5",
"@types/node": "^10.12.0",
"@types/puppeteer": "^1.9.0",
"@types/react": "^16.7.7",
"@types/react-dom": "^16.0.10",
"@types/react-router-dom": "^4.3.1",
"cross-env": "^5.2.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"jest-puppeteer": "^3.5.2",
"lint-staged": "^8.1.0",
"prettier": "^1.14.3",
"puppeteer": "^1.9.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "^3.1.0",
"shelljs": "^0.8.2",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.1.3"
},
"resolutions": {
"@types/react": "^16.4.18"
},
"dependencies": {
"classnames": "^2.2.6",
"returnof": "^1.1.1"
},
"peerDependencies": {
"@material-ui/core": "^3.2.2",
"@material-ui/icons": "^3.0.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "node build.js",
"test": "jest",
"eject": "react-scripts-ts eject",
"lint": "tslint 'src/**/*.ts*'",
"format": "prettier --config .prettierrc.json --write 'src/**/*.ts*'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.ts*": [
"prettier --config .prettierrc.json --write",
"git add"
]
},
"jest": {
"preset": "jest-puppeteer",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"setupTestFrameworkScriptFile": "./jest.setup.js",
"verbose": true
}
}