-
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.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 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": "march",
"version": "1.0.0",
"private": true,
"description": "messing",
"main": "index.ts",
"dependencies": {
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^5.0.2",
"tsyringe": "^3.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"typescript": "^3.4.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"scripts": {
"build": "concurrently \"webpack\" \"copyfiles --flat src/index.html dist\"",
"build:sass": "node-sass --include-path sass ./src/scss/_main.scss ./dist/css/style.css",
"watch": "concurrently \"webpack --watch\" ",
"start": "concurrently \"webpack-dev-server --open\" \"copyfiles --flat src/index.html dist\" \"node-sass --include-path sass ./src/scss/_main.scss ./dist/css/style.css\"",
"test": "mocha -r ts-node/register tests/**/*.spec.ts"
},
"author": "",
"license": "ISC"
}