-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "<name>",
"description": "<description>",
"version": "0.0.1",
"author": {
"name": "<name>",
"email": "<email>"
},
"homepage": "<url>",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "<type>",
"url": "<url>"
},
"scripts": {
"build": "webpack",
"start": "webpack --watch",
"test": "mocha-webpack",
"test:watch": "npm run test -- --watch"
},
"peerDependencies": {
"react": "^16.2.0"
},
"dependencies": {
"react": "16.2.0",
"webpack": "3.10.0"
},
"devDependencies": {
"@types/enzyme": "3.1.9",
"@types/expect": "1.20.2",
"@types/jsdom": "11.0.4",
"@types/mocha": "2.2.48",
"@types/node": "9.4.5",
"@types/react": "16.0.36",
"@types/react-dom": "16.0.4",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.6.1",
"css-loader": "0.28.9",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"expect": "22.3.0",
"file-loader": "1.1.6",
"jest": "22.3.0",
"jest-css-modules": "1.1.0",
"jsdom": "11.6.2",
"mocha": "4.0.1",
"mocha-webpack": "1.0.1",
"react-dom": "16.2.0",
"react-test-renderer": "16.2.0",
"style-loader": "0.20.1",
"ts-jest": "22.0.4",
"ts-loader": "3.5.0",
"ts-node": "4.1.0",
"typescript": "2.7.1",
"url-loader": "0.6.2",
"webpack-node-externals": "1.6.0"
}
}