-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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
56
57
58
59
60
61
62
63
{
"name": "alife-lab",
"version": "1.0.0",
"description": "Artificial Life and Generative Art Lab",
"main": "index.js",
"repository": "[email protected]:mitsuyoshi-yamazaki/ALifeLab.git",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/register": "^7.12.10",
"@material-ui/core": "^4.11.3",
"@types/jest": "^26.0.20",
"@types/p5": "^0.9.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.14",
"typescript": "^4.9.3",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"p5": "^1.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"scripts": {
"build": "webpack && python3 src/html-generator/generate.py && echo '\\007'",
"watch": "webpack -w",
"test": "jest",
"start": "webpack serve --open --mode development"
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"src//*.ts"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
},
"preset": "ts-jest",
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testEnvironment": "node"
}
}