This repository has been archived by the owner on May 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "admyn",
"version": "1.4.2",
"description": "An admin panel that integrates into existing Node + Express + MySQL/MariaDB applications.",
"files": [
"client/",
"server/"
],
"scripts": {
"build:library": "npm run build:library:js && npm run build:library:css",
"build:example": "npm run build:example:js && npm run build:example:css",
"build:library:js": "webpack-cli",
"build:example:js": "webpack-cli --config webpack.example.config.js",
"build:example:css": "node-sass --output-style compressed example/client.scss example/static/client.css",
"build:library:css": "node-sass --output-style compressed client/styles/complete.scss client/styles/admyn.css",
"test": "node server/test",
"prepublishOnly": "npm run build:library"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xyfir/admyn.git"
},
"keywords": [
"express",
"mysql",
"admin",
"panel",
"database",
"management"
],
"author": "Xyfir, LLC <[email protected]> (https://xyfir.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xyfir/admyn/issues"
},
"homepage": "https://github.com/Xyfir/admyn#readme",
"prettier": {
"singleQuote": true
},
"dependencies": {
"express": "^4.16.3",
"mysql": "^2.16.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"body-parser": "^1.18.3",
"node-sass": "^4.9.3",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-md": "^1.7.1",
"superagent": "^3.8.3",
"webpack": "^4.20.2"
},
"peerDependencies": {
"react": ">= 16.0.0",
"react-dom": ">= 16.0.0"
}
}