-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.73 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
68
69
70
71
72
{
"name": "shio-nodejs",
"version": "1.0.0",
"description": "Convert Shio CMS Javascript Site to NodeJS Application",
"main": "index.js",
"scripts": {
"start": "npm run prod",
"build": "npm-run-all clean transpile",
"server": "node ./build/lib",
"dev": "NODE_ENV=development npm-run-all build server",
"prod": "NODE_ENV=production npm-run-all build server",
"transpile": "npx babel ./src --out-dir build/lib --copy-files",
"clean": "rimraf build/lib",
"watch:dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShioCMS/shio-nodejs.git"
},
"author": "Alexandre Oliveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/ShioCMS/shio-nodejs/issues"
},
"nodemonConfig": {
"exec": "npm run dev",
"watch": [
"src/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"esmodules": true
}
}
]
]
},
"homepage": "https://github.com/ShioCMS/shio-nodejs#readme",
"dependencies": {
"@viglet/shio": "^0.3.7-c",
"cheerio": "^1.0.0-rc.3",
"debug": "^4.1.1",
"express": "^4.17.1",
"graphql": "^15.0.0",
"graphql-request": "^1.8.2",
"handlebars": "^4.7.6",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"promise": "^8.1.0",
"properties-reader": "^2.0.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-core": "^7.0.0-bridge.0"
}
}