-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 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
{
"name": "budget-tracker",
"version": "1.0.0",
"description": "for lab",
"main": "webpack.config.js",
"scripts": {
"lint": "eslint src",
"build": "webpack",
"start": "webpack-dev-server --hot",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Theartbug/budget-tracker.git"
},
"author": "@TheArtBug",
"license": "MIT",
"bugs": {
"url": "https://github.com/acl-devsign-winter-2018/budget-tracker/issues"
},
"homepage": "https://github.com/acl-devsign-winter-2018/budget-tracker#readme",
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"css-loader": "^0.28.9",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"file-loader": "^1.1.7",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.4.0",
"jest-css-modules": "^1.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.0",
"precss": "^3.1.0",
"shortid": "^2.2.8",
"style-loader": "^0.20.2",
"url-loader": "^0.6.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"eslint": "^4.18.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2"
}
}