-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "mirrorSampleApp",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015-riot": "^1.1.0",
"babel-preset-node6": "^11.0.0",
"file-loader": "^1.1.5",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "^0.0.5-beta.2",
"less": "^2.7.3",
"nodemon": "^1.13.2",
"npm-run-all": "^4.0.2",
"postcss-cli": "^4.1.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-simple-vars": "^4.1.0",
"pug-cli": "^1.0.0-alpha6",
"tag-pug-loader": "^1.0.0",
"url-loader": "^0.6.2",
"webpack": "^3.4.1",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"express": "^4.16.2",
"hammerjs": "^2.0.8",
"make-dir": "^1.2.0",
"moment": "^2.19.4",
"multer": "^1.3.0",
"riot": "^3.7.4",
"screenfull": "^3.3.2",
"webrtc-adapter": "^6.0.3"
},
"scripts": {
"copy": "copy src\\mirror.svg public",
"prebuild": "npm run copy",
"build": "npm-run-all build:*",
"build:js": "webpack",
"build:pug": "pug src/index.pug -o public/ -P",
"build:postcss": "postcss src/*.css -d public/ --no-map -u postcss-import postcss-simple-vars postcss-cssnext",
"prewatch": "npm run copy",
"watch": "npm-run-all -p watch:*",
"watch:js": "npm run build:js -- -w",
"watch:pug": "npm run build:pug -- -w",
"watch:postcss": "npm run build:postcss -- -w",
"start": "nodemon dist/server.js"
}
}