forked from damassi/babel-7-typescript-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.11 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
{
"name": "babel-7-typescript-example",
"version": "1.0.0",
"description": "Example TypeScript project built on top of new Babel 7 features",
"keywords": [
"babel",
"babel 7",
"typescript",
"react",
"example"
],
"main": "./dist/index.js",
"repository": "[email protected]:damassi/babel-7-typescript-example.git",
"author": "Christopher Pappas <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn clean:build && babel src --ignore src/**/__tests__ --out-dir dist --extensions '.ts,.tsx'",
"clean:build": "rm -rf dist",
"coverage": "jest --coverage",
"prepublishOnly": "yarn build",
"start": "babel-node --extensions '.ts,.tsx' index.ts",
"test": "jest",
"test:watch": "jest -o --watch",
"typecheck": "tsc"
},
"jest": {
"setupFiles": [
"./jest.setup.js"
],
"moduleDirectories": [
"./node_modules",
"./src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
}
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/jest": "^21.1.8",
"@types/react": "^16.0.25",
"@types/react-dom": "^16.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.4",
"babel-plugin-module-resolver": "^3.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"jest": "21.3.0-beta.9",
"nodemon": "^1.12.1",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"tslint-react": "^3.2.0",
"typescript": "^2.6.1"
},
"dependencies": {
"react": "^16.1.1",
"react-dom": "^16.1.1"
}
}