-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "darkside",
"version": "1.0.0",
"description": "A simulatino of light, prisms, reflection and refraction",
"main": "dist/app.js",
"scripts": {
"test": "jest",
"build": "tsc && npx webpack",
"start": "npm run serve",
"serve": "node dist/app.js",
"watch-ts": "tsc -w",
"watch": "tsc -w & npx webpack --watch",
"check-lint": "npx eslint --max-warnings 0 {src,test}/**/*.ts",
"lint": "npx eslint --fix {src,test}/**/*.ts",
"check-format": "npx prettier --check {src,test}/**/*.ts",
"format": "npx prettier --write {src,test}/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmilGedda/Darkside.git"
},
"keywords": [
"simulation"
],
"author": "Darkside authors",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmilGedda/Darkside/issues"
},
"homepage": "https://github.com/EmilGedda/Darkside#readme",
"devDependencies": {
"@types/jest": "^24.0.9",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"@typescript-eslint/typescript-estree": "^1.4.2",
"css-loader": "^2.1.1",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"html-inline-css-webpack-plugin": "^1.4.0",
"html-minifier": "^3.5.21",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.5.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.16.4",
"terser-webpack-plugin": "^1.2.3",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}