-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 KB
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
{
"name": "website",
"version": "1.0.0",
"description": "The NOVIZ website development environment",
"private": true,
"scripts": {
"test": "webpack-dev-server --open",
"build": "webpack --mode=production",
"prod": "npm run build; ./copy_dist.sh",
"deploy": "./deploy.sh",
"test-noviz": "node server.js --site=noviz",
"test-sr": "node server.js --site=speaking-radar"
},
"author": "NOVIZ",
"devDependencies": {
"@types/bootstrap": "^4.2.0",
"@types/jquery": "^3.3.29",
"clean-webpack-plugin": "^1.0.0",
"connect": "^3.6.6",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"express": "^4.16.4",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"mini-css-extract-plugin": "^0.5.0",
"minimist": "^1.2.0",
"node-sass": "^4.11.0",
"path": "^0.12.7",
"sass": "^1.16.1",
"sass-loader": "^7.1.0",
"serve-static": "^1.13.2",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"typescript": "^3.2.4",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.1",
"webpack-dev-server": "^3.1.14"
}
}