forked from Oxygem/Kanmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"name": "kanmail",
"version": "1.0.0",
"main": "index.js",
"author": "Nick Barrett <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.4.0",
"immutability-helper": "^2.4.0",
"immutable": "^3.8.2",
"less": "^3",
"less-loader": "^4.0.5",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"object-hash": "^1.3.0",
"prop-types": "^15.6.0",
"randomcolor": "^0.5.4",
"react": "^16.0.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.0.0",
"react-quill": "^1.3.2",
"react-select": "^2.0.0",
"style-loader": "^0.19.0",
"urijs": "^1.19.0",
"url-loader": "^1.0.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.11.2",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"dev": "NODE_ENV=dev webpack-dev-server --port 4421",
"lint": "eslint --cache --ext .js,.jsx kanmail/client/",
"lint-fix": "eslint --cache --fix --ext .js,.jsx kanmail/client/"
}
}