-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.09 KB
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
{
"name": "react-tint",
"version": "2.0.0",
"description": "A React component that applies image processing filters to an image using Processing",
"main": "./build/react-tint.min.js",
"author": "Nitin Tulswani",
"license": "MIT",
"files": [
"build",
"src"
],
"dependencies": {
"p5": "^0.5.16"
},
"peerDependencies": {
"react": "^16.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/webpack-dev-server --port 3000 --content-base ./public --hot --config ./webpack/webpack.config.dev.js",
"build": "rm -rf build && NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/webpack.config.prod.js",
"format": "find src -name '*.js' | xargs prettier --write --no-semi --single-quote"
}
}