-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 969 Bytes
/
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
{
"name": "relative-sharer",
"version": "1.0.0",
"description": "This plugin will:",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sasswatch": "sass --watch ./src/style.scss:./dist/style.css --style compressed",
"sasswatchadmin": "sass --watch ./src/admin_pages.scss:./dist/admin.css --style compressed",
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
"dev": "cross-env BABEL_ENV=default webpack --watch"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.1",
"webpack": "^4.2.1",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.2.6",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router-dom": "^4.3.1"
},
"author": "Daniel Gregory",
"license": "ISC"
}