-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.69 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "todoit",
"version": "1.0.0",
"description": "Simple application to manage TODOS.",
"main": "server/build/index.js",
"private": true,
"keywords": [
"todo"
],
"author": "moaali",
"license": "ISC",
"scripts": {
"start": "node server/build/index.js",
"prestart": "npm run compile-node",
"compile-node": "babel server/src -d server/build --copy-files",
"build": "webpack --mode production --config=./.config/webpack/bundler.js --env production && npm run compile-node && node server/build/index.js",
"dev": "webpack-dev-server --mode development --config=./.config/webpack/bundler.js --env development",
"lint": "eslint .",
"test": "jest --config .jestrc.js",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.46",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0-beta.46",
"@babel/polyfill": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"@babel/preset-stage-0": "^7.0.0-beta.46",
"@babel/register": "^7.0.0-beta.46",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"browserslist": "^3.2.6",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"css-mqpacker": "^6.0.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"htmlhint": "^0.9.13",
"husky": "^0.14.3",
"image-webpack-loader": "^4.2.0",
"imagemin-webpack-plugin": "^2.1.1",
"imports-loader": "^0.8.0",
"jest": "^22.4.3",
"jsonlint": "^1.6.3",
"lint-staged": "^7.1.3",
"node-sass": "^4.9.0",
"postcss-cssnext": "^3.1.0",
"postcss-load-config": "^1.2.0",
"postcss-loader": "^2.1.4",
"prettier": "^1.12.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0",
"svg-url-loader": "^2.3.2",
"sw-precache-webpack-plugin": "^0.11.5",
"url-loader": "^1.0.1",
"webapp-webpack-plugin": "^2.0.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2",
"webpack-dev-server": "^3.1.3",
"yargs": "^11.0.0"
},
"dependencies": {
"axios": "^0.18.0",
"cors": "^2.8.4",
"express": "^4.14.0",
"line-awesome": "^1.0.0",
"lodash": "^4.17.10",
"mobx": "4.3.1",
"mobx-react": "^5.2.0",
"morgan": "^1.9.0",
"normalize.css": "^8.0.0",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-hot-loader": "^4.1.2",
"react-tooltip": "^3.6.1",
"react-truncate": "^2.3.0",
"roboto-fontface": "^0.9.0",
"uuid": "^3.2.1",
"whatwg-fetch": "^2.0.4"
},
"engines": {
"node": "9.11.1"
}
}