forked from phcode-dev/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.01 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
{
"name": "phoenix",
"version": "2.0.0-0",
"apiVersion": "2.0.0",
"homepage": "https://core.ai",
"issues": {
"url": "https://github.com/aicore/phoenix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aicore/phoenix.git",
"branch": "",
"SHA": ""
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"del": "^6.0.0",
"eslint": "^7.32.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-if": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-useref": "^5.0.0",
"gulp-webserver": "^0.9.1",
"gulp-zip": "^5.1.0",
"http-server": "14.1.0",
"husky": "^7.0.4",
"lodash": "^4.17.21",
"merge-stream": "^2.0.0",
"readable-stream": "^3.6.0"
},
"scripts": {
"eslint": "npm run lint",
"eslint:fix": "npm run lint:fix",
"lint": "eslint --quiet src test",
"lint:fix": "eslint --quiet --fix src test",
"prepare": "husky install",
"test": "gulp test",
"buildonly": "gulp build",
"build": "npm run buildonly && npm run test && npm run lint",
"clean": "gulp clean",
"reset": "gulp reset",
"release:dev": "gulp releaseDev",
"release:staging": "gulp releaseStaging",
"release:prod": "gulp releaseProd",
"serve": "http-server . -p 8000 -c-1",
"serveExternal": "http-server . -p 8000 -a 0.0.0.0 --log-ip true -c-1"
},
"licenses": [
{
"type": "AGPL-3.0-or-later",
"url": "https://github.com/aicore/phoenix/blob/master/LICENSE"
}
],
"dependencies": {
"@phcode/fs": "^1.0.10",
"browser-mime": "^1.0.1",
"jszip": "^3.7.1",
"marked": "^4.0.14",
"mime-db": "^1.52.0",
"prettier": "^2.6.1",
"underscore": "^1.13.2"
}
}