-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
54 lines (54 loc) · 1.66 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
{
"name": "jsonapi_explorer",
"version": "0.1.0",
"description": "Interactive JSON:API explorer",
"private": true,
"scripts": {
"test": "jest",
"watch": "webpack --watch",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"start": "NODE_ENV=development webpack-dev-server --open --config webpack.dev.js",
"predeploy": "npm run build && cp CNAME ./dist",
"deploy": "gh-pages -d dist"
},
"author": "zrpnr",
"homepage": "https://zrpnr.github.io/jsonapi_explorer",
"license": "GPL-2.0",
"dependencies": {
"@babel/runtime": "^7.4.5",
"codemirror": "^5.47.0",
"dotenv-webpack": "^1.7.0",
"gh-pages": "^2.0.1",
"json-schema-ref-parser": "^6.1.0",
"react": "^16.8.6",
"react-clipboard.js": "^2.0.16",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.0",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"css-loader": "^3.0.0",
"html-loader": "^0.5.5",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"postcss-custom-properties": "^8.0.10",
"postcss-loader": "^3.0.0",
"prettier": "1.17.1",
"react-hot-loader": "^4.8.7",
"sass-loader": "^7.1.0",
"svg-url-loader": "^2.3.3",
"webpack": "^4.32.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"webpack-merge": "^4.2.1"
}
}