-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.41 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
{
"name": "new",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch",
"serve": "webpack-dev-server --content-base src --hot --inline"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"module-resolver",
{
"root": [
"./app"
]
}
]
]
},
"keywords": [],
"author": "",
"license": "WTFPL",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"css-loader": "^2.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"fuse.js": "^3.4.2",
"html-webpack-plugin": "^3.2.0",
"react": "^16.8.2",
"react-dnd": "^7.0.2",
"react-dom": "^16.8.2",
"react-modal": "^3.8.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"style-loader": "^0.23.1",
"uuid": "^3.3.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@tinymce/tinymce-react": "^3.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"eslint-plugin-react": "^7.12.4",
"react-simplemde-editor": "^4.0.0",
"react-tinymce": "^0.7.0",
"react-wordart": "^1.9.0",
"validate.js": "^0.12.0"
}
}