-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.9 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
{
"name": "website",
"version": "0.0.1",
"description": "",
"main": "website.js",
"scripts": {
"build": "mkdir -p static && browserify -g markoify --extension='.marko' routes/index/client.js -o static/bundle.js",
"build-prod": "mkdir -p static && NODE_ENV=production browserify -g markoify --extension='.marko' routes/index/client.js -o static/bundle.js",
"start": "./node_modules/.bin/browser-refresh website.js",
"styleless": "./node_modules/.bin/stylelint **/*.marko --syntax less"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/andresilvasantos/andresilvasantos_website.git"
},
"author": "André Santos",
"license": "CC-BY-NC-ND-3.0",
"homepage": "https://bitbucket.org/andresilvasantos/andresilvasantos_website#readme",
"dependencies": {
"@lasso/marko-taglib": "^1.0.10",
"app-module-path": "^2.2.0",
"async": "^2.6.1",
"axios": "^0.16.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"case": "^1.5.5",
"compression": "^1.7.2",
"connect-mongo": "^2.0.1",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"express": "^4.16.3",
"express-force-ssl": "^0.3.2",
"express-session": "^1.15.6",
"imgurify": "^2.0.1",
"lasso": "github:andresilvasantos/lasso",
"lasso-less": "^3.0.1",
"lasso-marko": "^2.4.4",
"less": "^3.8.0",
"marko": "4.12.3",
"marko-loader": "^1.3.3",
"mongoose": "^4.13.14",
"multer": "^1.3.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"rand-token": "^0.4.0",
"random-int-array": "^1.0.0",
"sharp": "^0.20.5"
},
"devDependencies": {
"browser-refresh": "^1.7.3",
"browser-refresh-taglib": "^1.1.0",
"browserify": "^16.2.2",
"eslint": "^4.19.1",
"stylelint": "^9.4.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"stylelint-processor-arbitrary-tags": "^0.1.0"
}
}