-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.8 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
{
"name": "react-pdb-view",
"version": "1.0.3",
"description": "React component for rendering .pdb files",
"main": "lib/index.js",
"scripts": {
"dev": "concurrently \"npm run lib:watch\" \"npm run docs\"",
"lib": "babel src/lib -d lib --copy-files",
"lib:watch": "babel src/lib -w -d lib --copy-files",
"docs": "webpack-dev-server --mode development",
"docs:prod": "webpack --mode production",
"test": "react-scripts test --env=jsdom"
},
"keywords": [],
"license": "MIT",
"peerDependencies": {
"react": "^15.3.0 || ^16.2.0",
"react-dom": "^15.3.0 || ^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46",
"@babel/polyfill": "7.0.0-beta.44",
"@babel/preset-env": "7.0.0-beta.44",
"@babel/preset-react": "7.0.0-beta.44",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.2.0",
"babel-loader": "^8.0.0-beta.0",
"compression-webpack-plugin": "^1.1.11",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.2.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"style-loader": "^0.21.0",
"three-full": "git://github.com/LMNTL/three-full.git",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
},
"author": "Jessica Thomas",
"homepage": "https://github.com/LMNTL/react-pdb-view",
"repository": {
"type": "git",
"url": "[email protected]:LMNTL/react-pdb-view.git"
},
"dependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"react-scripts": "^1.1.4",
"react-test-renderer": "^16.4.1",
"shebang-loader": "0.0.1"
}
}