-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "identity-frontend",
"version": "0.1.0",
"description": "A simple card portfolio progressive web application",
"main": "server.js",
"repository": "https://github.com/m8r1x/identity",
"author": "wmik",
"license": "MIT",
"scripts": {
"build": "webpack",
"build-task:scss-compile": "node-sass-chokidar --source-map true src/assets/sass/ -o dist/css",
"dev": "webpack-dev-server --inline --hot --content-base src",
"lint": "eslint .",
"start": "node server.js",
"start:server": "json-server --watch db.json",
"start:watch": "nodemon",
"sass:build": "npm run build-task:scss-compile && npm run build-task:autoprefixer",
"test": "jest"
},
"dependencies": {
"axios": "^0.16.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-static-gzip": "^0.2.3",
"morgan": "^1.8.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.7.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"compression-webpack-plugin": "^0.4.0",
"cssnano": "^3.10.0",
"eslint": "^4.1.1",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.29.0",
"jest": "^20.0.4",
"json-server": "^0.11.0",
"optimize-css-assets-webpack-plugin": "^2.0.0",
"react-redux-lifecycle": "^2.0.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.2.3",
"redux-saga": "^0.15.4",
"style-loader": "^0.18.2",
"sw-precache-webpack-plugin": "^0.11.3",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"engines": {
"node": "6.10.2"
}
}