-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 2.07 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": "Calculator",
"version": "1.0.0",
"description": "Topic: Calculator",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"clean": "rimraf dist .awcache",
"clean:dist:dev": "rimraf -- dist/dev .awcache",
"clean:dist:prod": "rimraf -- dist/prod .awcache",
"sass:dev": "node-sass \"src/sass/index.scss\" \"dist/dev/index.css\" --include-path node_modules --source-map true",
"sass:prod": "node-sass \"src/sass/index.scss\" \"dist/prod/index.css\" --output-style compressed -q",
"sass:watch": "node-sass -w \"src/sass/index.scss\" \"dist/dev/index.css\" --output-style compressed -q --source-map true --include-path node_modules",
"build": "npm run clean && cross-env NODE_ENV=development webpack -d --display-error-details",
"build:prod": "npm run clean:dist:prod && npm run sass:prod && cross-env NODE_ENV=production webpack -p",
"build:dev": "npm run clean:dist:dev && npm run sass:dev && cross-env NODE_ENV=development webpack -d",
"watch:dev": "npm-run-all -p -r \"build -- --watch\" sass:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClarityOfMind/lecture_09.git"
},
"author": "Dmitry Vasilev",
"license": "ISC",
"bugs": {
"url": "https://github.com/ClarityOfMind/lecture_09/issues"
},
"homepage": "https://github.com/ClarityOfMind/lecture_09#readme",
"dependencies": {
"ws": "^6.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"http": "0.0.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"node-static": "^0.7.10",
"npm": "^6.1.0",
"npm-run-all": "^4.1.3",
"postcss-loader": "^2.1.5",
"rimraf": "^2.6.2",
"sass-autoprefixer": "^1.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.5"
}
}