forked from Automattic/liveblog
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.43 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
{
"name": "liveblog",
"description": "Liveblogging done right. Using WordPress",
"version": "1.9.9",
"author": "Automattic",
"private": true,
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.1",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.23.0",
"css-loader": "^0.28.7",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.4.0",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^3.0.0",
"jest": "^20.0.4",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.8",
"sass-loader": "^6.0.6",
"sass-module-importer": "^1.4.0",
"sass-mq": "^3.3.2",
"style-loader": "^0.18.2",
"stylelint": "^8.2.0",
"stylelint-scss": "^2.1.0",
"webpack": "^3.3.0"
},
"dependencies": {
"brace": "^0.11.1",
"core-js": "^2.5.1",
"custom-event-polyfill": "^0.3.0",
"draft-convert": "^2.0.0",
"draft-js": "^0.10.3",
"draft-js-export-html": "^1.2.0",
"immutable": "^3.8.2",
"js-beautify": "^1.7.5",
"lodash-es": "^4.17.11",
"moment": "^2.23.0",
"moment-timezone": "^0.5.23",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-ace": "^5.9.0",
"react-dom": "^16.0.0",
"react-loadable": "^5.4.0",
"react-redux": "^5.0.6",
"react-scroll-trigger": "^0.5.1",
"react-select": "^1.1.0",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-observable": "^0.16.0",
"rxjs": "^5.4.3",
"smoothscroll-polyfill": "^0.4.3"
},
"scripts": {
"lint-scripts": "./node_modules/.bin/eslint ./src/react/ --fix",
"lint-styles": "./node_modules/.bin/stylelint --fix \"src/styles/**/*.scss\"",
"test": "./node_modules/.bin/jest",
"build": "NODE_ENV=production webpack -p",
"build-dev": "NODE_ENV=development webpack",
"watch": "NODE_ENV=development webpack --watch"
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
},
"globals": {
"__DEV__": true,
"__TEST__": true
},
"verbose": true
},
"browserslist": [
"last 1 version",
"ie >= 11"
]
}