-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.78 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
{
"name": "json-react-layouts-data-loader",
"version": "0.0.1-semantic-release",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"license": "MIT",
"scripts": {
"build:commonjs": "tsc -p ./tsconfig.build.json --outDir ./dist/cjs --module commonjs",
"build:esm": "tsc -p ./tsconfig.build.json --outDir ./dist/esm --module es2015",
"build": "yarn build:commonjs && yarn build:esm",
"lint": "eslint --ext .js,.ts .",
"test": "jest",
"verify": "yarn build && yarn test && yarn lint"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"devDependencies": {
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-wanews": "^2.0.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "^24.9.0",
"json-react-layouts": "^2.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-ssr-data-loader": "^1.3.0",
"ts-jest": "^24.0.2",
"tslib": "^1.10.0",
"typescript": "3.5.3"
},
"dependencies": {
"typescript-log": "^1.1.1"
},
"peerDependencies": {
"json-react-layouts": "^2.0.1",
"react-ssr-data-loader": "^1.3.0"
}
}