-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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": "monaco-editor-boilerplate",
"version": "1.0.0",
"private": true,
"description": "Boilerplate for projects using ES2015 and React",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/satya164/react-boilerplate.git"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-serve",
"flow": "flow",
"lint": "eslint .",
"build": "cross-env NODE_ENV=production webpack -p",
"prebuild": "del dist"
},
"author": "Satyajit Sahoo <[email protected]> (https://github.com/satya164/)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"del-cli": "^1.1.0",
"eslint": "^5.5.0",
"eslint-config-satya164": "^2.0.1",
"flow-bin": "^0.80.0",
"mini-css-extract-plugin": "^0.4.2",
"style-loader": "^0.23.0",
"webpack": "^4.17.2",
"webpack-command": "^0.4.1",
"webpack-serve": "^2.0.2",
"worker-loader": "^2.0.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"dedent": "^0.7.0",
"idb-keyval": "^3.1.0",
"lodash": "^4.17.10",
"monaco-editor": "^0.14.3",
"prettier": "^1.14.2",
"react": "^16.5.0",
"react-dom": "^16.5.0"
}
}