-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 956 Bytes
/
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
{
"name": "galilei",
"version": "0.0.3",
"description": "WebGL Planet Renderer",
"scripts": {
"start": "webpack-dev-server --mode development -d",
"build": "webpack --mode production && jest",
"test": "jest --watchAll"
},
"keywords": [],
"author": "Nathan Soufflet",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/gl-matrix": "^2.4.3",
"@types/jest": "^23.3.2",
"@types/webgl2": "0.0.4",
"gl-matrix": "^2.8.1",
"jest": "^23.6.0",
"ts-jest": "^23.10.2",
"ts-loader": "^5.2.1",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
},
"homepage": "https://nathsou.github.io/Galileo"
}