-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
111 lines (111 loc) · 3.42 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "ml-classifier-ui",
"repository": "https://github.com/thekevinscott/ml-classifier-ui",
"version": "0.5.1",
"homepage": "https://thekevinscott.github.io/ml-classifier-ui/",
"description": "A package for creating image-based machine learning models",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "npm run clean:generated_files && npm run clean:style_types",
"clean:generated_files": "rimraf index.js index.d.ts index.css utils Preview Model Dropzone App dist",
"clean:style_types": "rimraf src/**/*.css.d.ts src/**/*.scss.d.ts",
"watch": "npm run build && rerun-script",
"build": "rollup -c",
"example-start": "node example/scripts/start.js",
"example-build-and-start": "concurrently \"npm run watch\" \"npm run example-start\"",
"example-deploy": "gh-pages -d example/build",
"example-build": "node example/scripts/build.js",
"example-build-and-deploy": "npm run example-build && npm run example-deploy",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"watches": {
"build": [
"src/**/*.scss",
"src/**/*.css",
"src/**/*.ts",
"src/**/*.tsx"
]
},
"keywords": [
"tensorflowjs",
"artificial intelligence",
"machine learning",
"deep learning",
"image classification",
"tensorflow"
],
"author": "Kevin Scott",
"license": "MIT",
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.(j|t)s?(x)",
"<rootDir>/src/**/?(*.)(spec|test).(j|t)s?(x)"
],
"transform": {
"^.+\\.ts?$": "babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|ts)$"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"peerDependencies": {
"react": "^16.4.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.51",
"@babel/plugin-transform-classes": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-stage-0": "^7.0.0-beta.51",
"@babel/preset-typescript": "^7.0.0-beta.51",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/react": "^3.4.8",
"@types/jest": "^23.1.1",
"@types/node": "^10.3.4",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"autoprefixer": "^8.6.5",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"concurrently": "^3.6.0",
"express": "^4.16.3",
"gh-pages": "^1.2.0",
"jest": "^24.9.0",
"node-sass": "^4.9.2",
"npm-run-all": "^4.1.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"regenerator-runtime": "^0.12.0",
"rerun-script": "^0.6.0",
"rimraf": "^2.6.2",
"rollup": "^0.62.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-image": "^1.0.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss-modules": "^1.0.8",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.15.1",
"sass-loader": "^7.0.3",
"ts-jest": "^24.0.2",
"ts-loader": "^2.3.7",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.10.0",
"typescript": "3.0.0-rc",
"uglify-es": "^3.3.9"
},
"dependencies": {
"ml-classifier": "0.5.1"
}
}