-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.81 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
94
95
{
"name": "tsx-sample",
"version": "0.0.1",
"description": "React with TypeScript",
"scripts": {
"start": "webpack-dev-server",
"pretest": "npm run format && npm run lint",
"test": "jest --verbose",
"lint": "tslint -p tsconfig.json",
"format": "prettier '{src/**/,./}*.{ts,tsx,js}' --write"
},
"main": "index.js",
"repository": "[email protected]:edwarddamato/tsx-sample.git",
"author": "D'Amato, Edward <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/jest": "^22.1.3",
"@types/nock": "^9.1.2",
"@types/node": "10.1.1",
"@types/react-addons-test-utils": "^0.14.21",
"@types/react-test-renderer": "^16.0.1",
"awesome-typescript-loader": "^5.0.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-loader": "^7.0.0",
"babel-plugin-module-resolver": "^3.1.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.9",
"eslint": "^4.18.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.3.0",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.0",
"prettier": "^1.10.2",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.2.0",
"sass-loader": "^7.0.1",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"ts-jest": "^22.0.4",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.6.0",
"tslint-config-prettier": "^1.8.0",
"tslint-eslint-rules": "^5.0.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.7.2",
"typescript-eslint-parser": "^15.0.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"\\.(css|less|scss)$": "identity-obj-proxy"
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"parser": "typescript"
}
}