-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.62 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
{
"name": "my-app",
"version": "0.0.1",
"private": true,
"externals": {
"react": "React",
"react-dom": "ReactDOM"
},
"scripts": {
"build-jsx-browser": "parcel build --log-level 1 --global __root_component --out-dir views views/*.jsx",
"build-jsx-node": "parcel build --log-level 1 --no-minify --target node --out-dir views/node views/*.jsx",
"build": "concurrently -i 'npm:build-*'",
"start": "node -r esm app.js",
"watch-server": "nodemon -e js -r esm app.js",
"watch-jsx-browser": "parcel watch --log-level 1 --no-hmr --global __root_component --out-dir views views/*.jsx",
"watch-jsx-node": "parcel watch --log-level 1 --target node --out-dir views/node views/*.jsx",
"watch-jsx": "concurrently 'npm:watch-jsx-browser' 'npm:watch-jsx-node'",
"watch": "concurrently -i 'npm:watch-server' 'npm:watch-jsx-browser' 'npm:watch-jsx-node'",
"lint": "eslint app.js routes",
"buildBuilderScript": "npx browserify ./public/scripts/builder.js > ./public/scripts/builder_bundle.js -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] --fast",
"buildRefScript": "npx browserify ./public/scripts/ref.js > ./public/scripts/ref_bundle.js -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] --fast",
"buildCiteScript": "npx browserify ./public/scripts/cite.js > ./public/scripts/cite_bundle.js -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] --fast"
},
"dependencies": {
"@atlaskit/button": "^15.1.1",
"@atlaskit/form": "^8.1.6",
"@atlaskit/section-message": "^5.0.7",
"@atlaskit/select": "^13.0.6",
"@atlaskit/textfield": "^4.0.9",
"@babel/cli": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"atlassian-connect-express": "^6.1.0",
"babelify": "^10.0.0",
"body-parser": "^1.19.0",
"browserify": "^17.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"errorhandler": "^1.5.1",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-hbs": "^2.3.4",
"hbs": "^4.1.1",
"hbs-json": "^0.1.1",
"helmet": "^4.1.1",
"morgan": "^1.10.0",
"nocache": "^2.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"sequelize": "^6.3.5",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"babel-plugin-styled-components": "^1.11.1",
"concurrently": "^5.3.0",
"eslint": "^7.10.0",
"eslint-plugin-react": "^7.21.3",
"longjohn": "^0.2.12",
"ngrok": "^3.3.0",
"nodemon": "^2.0.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-externals": "^0.5.1",
"sqlite3": "^5.0.0"
}
}