-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.67 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
{
"name": "coreMyCLI",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "jest",
"start": "babel-node --extensions '.ts','.js' src/index.js",
"start:dev": "NODE_ENV=development nodemon --exec babel-node --extensions '.ts','.js' -- $NODE_DEBUG_OPTION src/index.js",
"start:c": "NODE_ENV=development nodemon --exec babel-node --extensions '.ts','.js' -- $NODE_DEBUG_OPTION src/c.js -s",
"lint": "eslint src",
"lint:ts": "eslint src --ext js,jsx,ts,tsx",
"lint:quiet": "eslint src --quiet",
"lint:ts:quiet": "eslint src --ext js,jsx,ts,tsx --quiet",
"lint:fix": "yarn lint --fix",
"precommit": "yarn lint && yarn test"
},
"dependencies": {
"@babel/types": "^7.8.6",
"commander": "^4.1.1",
"core-js": "3"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/register": "^7.7.4",
"@earlorg/eslint-config": "^1.2.0",
"@types/node": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^6.7.2",
"husky": "^1.3.1",
"jest": "^25.1.0",
"nodemon": "^1.18.10",
"prettier": "^1.17.1",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"raf": "^3.4.1",
"typescript": "^3.5.3",
"whatwg-fetch": "^3.0.0"
},
"jest": {
"moduleDirectories": [
"src",
"node_modules"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|css|pdf)$": "<rootDir>/test/file-mock.js",
"react-spring/renderprops": "<rootDir>/node_modules/react-spring/renderprops.cjs",
"react-spring": "<rootDir>/node_modules/react-spring/web.cjs"
},
"verbose": true,
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest",
"^.+\\.ts$": "babel-jest",
"^.+\\.tsx$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"coverageDirectory": "report",
"collectCoverageFrom": [
"src/**/*.js"
],
"setupFiles": [
"<rootDir>/test/testSetup.js"
]
}
}