-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.14 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.14 KB
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
{
"name": "angularjs-react",
"version": "1.0.0",
"description": "Angularjs integration with react",
"main": "index.html",
"scripts": {
"start": "webpack-dev-server --hot",
"build": "webpack --env.production",
"lint": "eslint --ext .js,.jsx src/**",
"test": "jest --coverage --u",
"test:watch": "jest --coverage --watchAll",
"test:updateSnapshot": "jest --updateSnapshot",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nimjetushar/angularjs-react.git"
},
"keywords": [],
"author": "Tushar Nimje",
"license": "apache-2.0",
"bugs": {
"url": "https://github.com/nimjetushar/angularjs-react/issues"
},
"homepage": "https://github.com/nimjetushar/angularjs-react#readme",
"dependencies": {
"@babel/polyfill": "7.4.0",
"angular": "1.7.8",
"angular-ui-router": "1.0.22",
"bootstrap": "4.3.1",
"oclazyload": "1.1.0",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.4"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.4.2",
"@babel/preset-react": "7.0.0",
"angular-mocks": "1.7.8",
"angularjs-template-loader": "0.1.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.5.0",
"babel-loader": "8.0.5",
"babel-plugin-angularjs-annotate": "0.10.0",
"clean-webpack-plugin": "2.0.1",
"copy-webpack-plugin": "5.0.2",
"css-loader": "2.1.1",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.11.2",
"enzyme-to-json": "3.4.0",
"eslint": "5.16.0",
"eslint-plugin-react": "7.12.4",
"file-loader": "3.0.1",
"gh-pages": "2.0.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"jest": "24.5.0",
"jest-cli": "24.5.0",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.11.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"webpack": "4.29.6",
"webpack-cli": "3.3.0",
"webpack-dev-server": "3.2.1",
"webpack-merge": "4.2.1"
}
}