-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "eindopdracht-bt",
"private": true,
"version": "1.0.0",
"description": "Kahoot clone, omdat het kan",
"scripts": {
"lint": "stylelint src/**/*.css & xo",
"watch-client": "nodemon --watch src --watch lib --exec \"npm run build\"",
"watch-server": "nodemon server.js --watch server.js",
"build-js": "node tasks.js js",
"build-css": "node tasks.js css",
"build": "npm run build-js & npm run build-css",
"start": "npm run lint && npm run build && node server.js"
},
"keywords": [],
"author": "Rijk van Zanten <rijkvanzanten@me.com> (rijks.website)",
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"convert-range": "^1.0.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"leveldown": "^1.6.0",
"levelup": "^1.3.5",
"shortid": "^2.2.8",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"spdy": "^3.4.4",
"vdom-to-html": "^2.3.1",
"virtual-dom": "^2.1.1"
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"xo": {
"space": true,
"esnext": false
},
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"csso": "^3.0.1",
"exorcist": "^0.4.0",
"glob": "^7.1.1",
"nodemon": "^1.11.0",
"postcss": "^5.2.16",
"postcss-cssnext": "^2.10.0",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"uglifyify": "^3.0.4",
"xo": "^0.18.1"
}
}