-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "artificialintelligenceclassifiers",
"displayName": "AI/ML Classifiers",
"version": "1.2.0",
"description": "A collection of AI/ML classifiers for various types of data, including text, images, and audio.",
"main": "assets/js/index.js",
"scripts": {
"install-deps": "npm install",
"start": "http-server -o",
"build": "npm run start",
"test": "http-server -o",
"serve": "http-server -o",
"format": "prettier --config .prettierrc --write \"*.{html,css,js,json,md}\" \"information-website/**/*.{html,css,js,json,md}\""
},
"keywords": [
"AI",
"ML",
"classifiers",
"text",
"images",
"audio",
"data",
"machine learning",
"artificial intelligence",
"classification"
],
"author": "Son Nguyen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hoangsonww/AI-ML-Classifiers.git"
},
"bugs": {
"url": "https://github.com/hoangsonww/AI-ML-Classifiers/issues"
},
"homepage": "/",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.33.2",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"sass": "^1.69.5",
"sass-loader": "^13.3.2"
},
"dependencies": {
"django": "^1.0.0",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"prettier": "^3.3.3"
}
}