-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "@lancer/studio",
"version": "0.24.0",
"description": "Build websites with the power of HTML.",
"type": "module",
"main": "index.js",
"repository": {
"type": "github",
"url": "https://github.com/LancerStudio/lancer"
},
"scripts": {
"build": "tsc && npm run build-assets",
"build-js": "node dist/client/build.js js",
"build-css": "node dist/client/build.js css",
"build-assets": "node dist/client/build.js assets",
"prepublishOnly": "npm test",
"test": "git clean -f tests/site-fixture && ospec 'tests/**/*.test.js'",
"test-watch": "nodemon -w dist/server -w tests --ignore tests/site-fixture --exec \"ospec 'tests/**/*.test.js'\""
},
"bin": {
"lancer": "./index.cjs"
},
"files": [
"dist",
"index.js",
"public",
"README.md"
],
"author": "Gilbert",
"license": "ISC",
"dependencies": {
"@lancer/ihtml-parser": "1.0.1",
"autoprefixer": "^10.2.3",
"commander": "^7.0.0",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"endent": "^2.0.1",
"esbuild": "~0.12.16",
"express": "^4.16.2",
"express-async-errors": "^3.1.1",
"fclone": "^1.0.11",
"glob": "^7.1.6",
"image-size": "^0.9.3",
"kleur": "^4.1.4",
"langs": "^2.0.0",
"lodash": "^4.17.20",
"n-readlines": "^1.0.1",
"path-to-regexp": "^3.0.0",
"postcss": "^8.2.4",
"postcss-import": "^14.0.0",
"posthtml": "^0.15.1",
"posthtml-match-helper": "^1.0.1",
"universal-cookie": "^4.0.4",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.22",
"@types/path-to-regexp": "^1.7.0",
"@types/sharp": "^0.27.1",
"nodemon": "^2.0.7",
"ospec": "^4.2.0",
"supertest": "^6.1.3",
"typescript": "4.3.x"
}
}