-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.29 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
{
"name": "evolution_simulator",
"version": "1.0.0",
"description": "A program to simulate evolution for my Computer Science non-examined assessment.",
"main": "index.js",
"scripts": {
"start": "webpack --watch --mode=development --config webpack.config.js",
"build": "webpack --mode=production --config webpack.config.js",
"serve": "npx webpack serve --mode=development --config webpack.config.js",
"lint": "npx prettier --write . && npx eslint . --fix --ext .ts"
},
"author": "Sanjay Sunil",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@types/chart.js": "^2.9.37",
"@types/lodash": "^4.14.197",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"babel-core": "^4.7.16",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"eslint": "^8.45.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.0.0-rc.6",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@canvasjs/charts": "^3.7.33",
"lodash": "^4.17.21"
}
}