-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.23 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
{
"name": "moonad",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest ./tests",
"build": "rm -rf docs; cp -r src docs; webpack",
"lint": "tslint --project .",
"lint-fix": "tslint --fix --project .",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonad/moonad.git"
},
"author": "Victor Maia",
"license": "MIT",
"bugs": {
"url": "https://github.com/moonad/moonad/issues"
},
"homepage": "https://github.com/moonad/moonad",
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"file-loader": "^4.2.0",
"formality-lang": "^0.1.227",
"inferno": "^7.3.2",
"inferno-hyperscript": "^7.3.2",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"raw-loader": "^3.1.0",
"serialize-javascript": ">=2.1.1",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.17.0",
"tslint-consistent-codestyle": "^1.14.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"typescript": "^3.7.2",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@types/jest": "^24.0.23",
"express": "^4.17.1"
},
"peerDependencies": {
"prettier": ">1.0.0",
"tslint": ">5.0.0"
},
"lint-staged": {
"*.{js,jsx,css,md,scss}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"tslint --fix",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"verbose": false,
"testURL": "http://localhost:8080",
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)(spec|test).[jt]s?(x)"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/tests/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "identity-obj-proxy",
"^./style$": "identity-obj-proxy"
},
"setupFiles": [
"./src/tests/browserMocks.ts"
],
"roots": [
"./src/"
],
"testPathIgnorePatterns": [
"./node_modules/formality-lang"
]
}
}