forked from fpetterlate/react-ts-component-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.85 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
{
"name": "@atto-byte/react-ts-component-starter",
"description": "What you need to create your own React component using typescript.",
"version": "0.0.1",
"author": {
"name": "William Luke",
"email": "[email protected]"
},
"homepage": "https://github.com/atto-byte/react-ts-component-starter",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "<type>",
"url": "https://github.com/atto-byte/react-ts-component-starter"
},
"scripts": {
"build": "webpack",
"start": "webpack --watch",
"test": "mocha-webpack",
"test:watch": "npm run test -- --watch"
},
"peerDependencies": {
"react": "^16.2.0"
},
"dependencies": {
"react": "16.8.3",
"webpack": "4.29.6"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.3.4",
"@types/enzyme": "3.9.0",
"@types/expect": "1.20.4",
"@types/jsdom": "12.2.3",
"@types/mocha": "5.2.6",
"@types/node": "11.10.4",
"@types/react": "16.8.6",
"@types/react-dom": "16.8.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"css-loader": "2.1.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"expect": "24.1.0",
"file-loader": "3.0.1",
"jest": "24.1.0",
"jest-css-modules": "1.1.0",
"jsdom": "13.2.0",
"mocha": "6.0.2",
"mocha-webpack": "1.1.0",
"react-dom": "16.8.3",
"react-test-renderer": "16.8.3",
"style-loader": "0.23.1",
"ts-jest": "24.0.0",
"ts-loader": "5.3.3",
"ts-node": "8.0.2",
"typescript": "3.3.3333",
"url-loader": "1.1.2",
"webpack-cli": "^3.2.3",
"webpack-node-externals": "1.7.2"
}
}