-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.3 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
{
"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/**/*.js",
"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.8.7",
"angular": "1.8.0",
"angular-ui-router": "1.0.26",
"bootstrap": "4.3.1",
"oclazyload": "1.1.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.8.4"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.10.1",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.4.2",
"@babel/preset-react": "7.0.0",
"@fourjs/eslint-config-tn": "4.1.0",
"angular-mocks": "1.7.8",
"angularjs-template-loader": "0.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.0.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.0.5",
"babel-plugin-angularjs-annotate": "0.10.0",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "5.0.2",
"css-loader": "3.5.3",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.11.2",
"enzyme-to-json": "3.3.5",
"eslint-plugin-react": "7.20.0",
"file-loader": "6.0.0",
"eslint": "6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"gh-pages": "2.0.1",
"html-loader": "1.1.0",
"html-webpack-plugin": "4.3.0",
"jest": "26.0.1",
"jest-cli": "26.0.1",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.14.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"sass-loader": "7.3.1",
"style-loader": "1.2.1",
"webpack": "4.29.6",
"webpack-cli": "3.3.0",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2"
}
}