-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.23 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
{
"name": "yaat-react-example",
"version": "1.0.0",
"description": "Yaat backend with React frontend example",
"main": "src/react/app.js",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"terser": "^4.6.10"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"babel-preset-react": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"watchify": "^3.11.1"
},
"scripts": {
"build": "./node_modules/browserify/bin/cmd.js -t ./node_modules/babelify/index.js src/react/app.js --standalone main | ./node_modules/terser/bin/terser --compress --mangle -o src/static/js/main.js",
"dev": "./node_modules/watchify/bin/cmd.js -t ./node_modules/babelify/index.js src/react/app.js --standalone main -o src/static/js/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yaat-framework/yaat-react-example.git"
},
"author": "Yaat Framework",
"license": "ISC",
"bugs": {
"url": "https://github.com/yaat-framework/yaat-react-example/issues"
},
"homepage": "https://github.com/yaat-framework/yaat-react-example#readme"
}