-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "Note-keeper",
"version": "1.0.0",
"description": "Template to start project with React and Webpack 2.",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/**/*.jsx",
"build:dev": "webpack --config=webpack.config.dev.js",
"build:prod": "webpack --config=webpack.config.prod.js",
"start": "webpack-dev-server --config=webpack.config.dev.js --progress --hot --inline"
},
"repository": "https://github.com/fumblehool/Note-keeper.git",
"author": "Damanpreet <daman.4880@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"css-loader": "0.28.7",
"eslint": "4.9.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"file-loader": "1.1.5",
"html-webpack-plugin": "2.30.1",
"node-sass": "4.5.3",
"postcss-loader": "2.0.8",
"sass-globbing": "1.0.0-alpha1",
"sass-loader": "6.0.6",
"style-loader": "0.19.0",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.3"
},
"dependencies": {
"babel-preset-stage-2": "6.24.1",
"bootstrap": "3.3.7",
"classnames": "2.2.5",
"immutable": "3.8.2",
"isomorphic-fetch": "2.2.1",
"js-cookie": "2.2.0",
"lodash": "4.17.4",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-quill": "1.1.0",
"react-redux": "5.0.6",
"react-router-dom": "4.2.2",
"react-tagsinput": "3.19.0",
"redux": "3.7.2",
"redux-thunk": "2.2.0"
}
}