-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
91 lines (91 loc) · 2.66 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
{
"name": "justwrite",
"title": "<justwrite.app>",
"version": "1.0.2",
"description": "Decoupled WordPress Blogging",
"main": "index.js",
"author": {
"name": "Jason Bobich",
"email": "[email protected]",
"url": "https://jasonbobich.com"
},
"repository": {
"type": "git",
"url": "https://github.com/themeblvd/justwrite.git"
},
"scripts": {
"start": "concurrently 'npm run server' 'npm run watch'",
"watch": "NODE_ENV=development webpack --watch",
"server": "node server.js",
"build": "NODE_ENV=development webpack",
"build:prod": "NODE_ENV=production webpack",
"report": "NODE_ENV=development webpack --json | webpack-bundle-size-analyzer >> ./report.txt",
"js-lint": "eslint \"{*.js,src/**/*.js}\"",
"js-lint:fix": "eslint \"{*.js,src/**/*.js}\" --fix",
"format": "prettier --write --single-quote --print-width=100 --tab-width=2 \"{*.js,src/**/*.js}\""
},
"license": "ISC",
"dependencies": {
"autoprefixer": "^8.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.11",
"draft-js": "^0.10.5",
"fecha": "^2.3.3",
"file-loader": "^1.1.11",
"html-to-draftjs": "^1.4.0",
"html-webpack-plugin": "^3.2.0",
"immutable": "^3.8.2",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"prop-types": "^15.6.1",
"raw-loader": "^0.5.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-html-parser": "^2.0.2",
"react-markdown": "^3.3.2",
"react-mde": "^5.5.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.0.1",
"showdown": "^1.8.6",
"turndown": "^4.0.2",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
},
"devDependencies": {
"babel-eslint": "^8.1.0",
"browser-sync": "^2.24.4",
"concurrently": "^3.5.1",
"connect-history-api-fallback": "^1.5.0",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.9.1",
"prettier": "^1.13.5",
"webpack-bundle-size-analyzer": "^2.7.0"
},
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}