forked from jekyll/jekyll-admin
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
123 lines (123 loc) · 4.06 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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "jekyll-manager",
"version": "0.1.1",
"description": "Jekyll Admin repackaged with some alterations",
"private": true,
"scripts": {
"start-message": "babel-node tools/startMessage.js",
"prestart": "npm-run-all --parallel start-message remove-dist",
"start": "npm-run-all --parallel start-api open:src lint:watch",
"start:tested": "npm-run-all --parallel start-api test:watch open:src lint:watch",
"start-api": "sh script/test-server",
"open:src": "babel-node tools/srcServer.js",
"lint": "esw webpack.config.* src tools",
"lint:watch": "npm run lint -- --watch",
"clean-dist": "npm run remove-dist && npm run add-dist",
"add-dist": "mkdirp ./lib/jekyll-admin/public",
"remove-dist": "rimraf ./lib/jekyll-admin/public",
"build:html": "babel-node tools/buildHtml.js",
"prebuild": "npm run clean-dist && npm run build:html && npm run lint && npm test",
"build": "babel-node tools/build.js",
"test": "jest",
"test:CI": "babel-node tools/testCi.js",
"test:cover": "npm run test -- --coverage ",
"test:cover:CI": "npm run test:CI -- --coverage && cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"test:size": "bundlesize",
"test:watch": "npm run test -- --watch",
"open:cover": "npm run test:cover && open ./coverage/lcov-report/index.html",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma --print-width 80 es5 --write"
]
},
"author": "Ashwin Maroli",
"license": "MIT",
"dependencies": {
"brace": "0.9.1",
"classnames": "2.2.6",
"highlight.js": "^9.15.10",
"isomorphic-fetch": "2.2.1",
"js-yaml": "3.13.1",
"lodash": "4.17.15",
"moment": "2.24.0",
"prop-types": "^15.7.2",
"react": "15.4.1",
"react-ace": "4.1.5",
"react-document-title": "^2.0.3",
"react-dom": "15.4.1",
"react-dropzone": "3.10.0",
"react-hotkeys": "^0.9.0",
"react-modal": "^1.7.3",
"react-notification-system": "0.2.17",
"react-redux": "5.0.1",
"react-router": "3.0.0",
"react-router-redux": "4.0.8",
"react-textarea-autosize": "^5.1.0",
"react-widgets": "3.4.5",
"redux": "3.6.0",
"redux-logger": "2.6.1",
"redux-thunk": "2.1.0",
"simplemde": "1.11.2",
"sortablejs": "1.8.4",
"underscore": "1.9.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.5",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-1": "6.24.1",
"browser-sync": "2.26.7",
"bundlesize": "^0.18.0",
"chalk": "1.1.3",
"cheerio": "0.20.0",
"coveralls": "^3.0.9",
"css-loader": "2.1.1",
"enzyme": "2.6.0",
"eslint": "6.5.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-react": "7.15.1",
"eslint-watch": "6.0.1",
"file-loader": "1.1.11",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^19.0.2",
"lint-staged": "^4.3.0",
"mini-css-extract-plugin": "0.8.0",
"mkdirp": "^0.5.1",
"moment-locales-webpack-plugin": "^1.1.2",
"nock": "10.0.6",
"node-sass": "4.12.0",
"npm-run-all": "4.1.5",
"prettier": "^1.18.2",
"react-addons-test-utils": "15.4.1",
"react-test-renderer": "15.4.1",
"redux-immutable-state-invariant": "1.2.4",
"redux-mock-store": "^1.0.4",
"rimraf": "2.5.4",
"sass-loader": "6.0.7",
"style-loader": "0.13.1",
"webpack": "4.41.3",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-dev-middleware": "3.7.2",
"webpack-hot-middleware": "2.25.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy",
"^.+\\.(gif|ttf|eot|svg|woff|woff2|ico)$": "<rootDir>/tools/fileMock.js"
},
"roots": ["src"],
"testMatch": ["**/*.spec.js"],
"globals": {}
}
}