-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.97 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
{
"name": "emoji-code",
"license": "UNLICENSED",
"scripts": {
"start": "webpack-dev-server",
"server": "nodemon server/index.js",
"build": "NODE_ENV=production webpack",
"test": "jest",
"deploy": "gh-pages -d dist",
"prettier": "prettier --write \"{src,server}/**/*.{js,jsx}\"",
"lint": "eslint . --ext .js,.jsx",
"svgo": "svgo --pretty -f ./src/library/svgs --config=svgo.config.json"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"babel-plugin-inline-react-svg": "^0.5.4",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "4",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"favicons-webpack-plugin": "^0.0.9",
"file-loader": "^2.0.0",
"gh-pages": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.13.7",
"style-loader": "^0.23.0",
"svgo": "^1.1.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"url-loader": "^1.1.1",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"brace": "^0.11.1",
"canvg": "^1.5.3",
"chalk": "^2.4.1",
"express": "^4.16.3",
"file-saver": "^2.0.0-rc.4",
"multer": "^1.4.0",
"nodemon": "^1.18.4",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-ace": "^6.1.4",
"react-dom": "^16.4.1",
"sanitize-filename": "^1.6.1",
"uniquefilename": "^1.1.2",
"whatwg-fetch": "^3.0.0"
}
}