This repository was archived by the owner on Sep 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.67 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
74
75
76
77
78
79
80
81
82
{
"name": "dict",
"version": "0.0.1",
"description": "AngularJS Redux App",
"main": "dist/index.js",
"scripts": {
"bsync": "browser-sync start --config config/browsersync/config.js",
"build": "webpack --config webpack.config.js",
"deploy": "npm-run-all build deploy:gh-pages",
"deploy:gh-pages": "gh-pages -d dist",
"start": "webpack-dev-server --hot --inline --port 3000 --config webpack.config.js",
"start:dist": "npm-run-all build bsync",
"test": "karma start karma.conf.js",
"test:server": "karma start karma.conf.js --browsers Chrome --auto-watch --no-single-run"
},
"author": "JLG",
"license": "MIT",
"dependencies": {
"angular": "^1.6.5",
"angular-jk-rating-stars": "^1.0.8",
"angular-route": "^1.6.5",
"bootstrap": "git+https://git@github.com/twbs/bootstrap.git#698a7b4253e668146b5d64f7124a913f71188278",
"immutable": "^3.8.1",
"material-design-icons": "^3.0.1",
"ng-redux": "^3.4.0",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0",
"redux-observable": "^0.14.1",
"reselect": "^3.0.1",
"rxjs": "^5.4.2",
"the-cat-api": "file:./packages/the-cat-api"
},
"devDependencies": {
"angular-mocks": "^1.6.5",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"browser-sync": "^2.18.12",
"chai": "^4.1.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-smells": "^1.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"gh-pages": "^1.0.0",
"html-loader": "^0.5.0",
"html-webpack-plugin": "^2.29.0",
"karma": "1.7.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.3",
"karma-phantomjs-launcher": "1.0.4",
"karma-webpack": "2.0.4",
"minimist": "^1.2.0",
"mocha": "^3.5.0",
"node-sass": "^4.5.3",
"npm-run-all": "^4.0.2",
"postcss-loader": "^2.0.6",
"redux-mock-store": "^1.2.3",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"stylelint-config-recommended": "^1.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
}
}