-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"babel": "./node_modules/.bin/babel index.js -d build/",
"uglify": "./node_modules/.bin/uglifyjs build/index.js -o build/index.min.js",
"build": "npm run babel && npm run uglify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hqzh/node.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hqzh/node/issues"
},
"homepage": "https://github.com/hqzh/node#readme",
"dependencies": {
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"ejs": "^2.6.1",
"express": "^4.16.3",
"kraken-js": "^2.2.0",
"node-readability": "^3.0.0",
"pg": "^7.7.1",
"pug": "^2.0.3",
"sqlite3": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^5.6.1",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-watch": "^5.0.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"uglify-es": "^3.3.9"
}
}