-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.33 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
{
"name": "pass-it-on",
"full_name": "Pass It On",
"private": true,
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -r dist static || true",
"backend:build": "npx babel backend-src -d dist",
"backend:dev": "npx nodemon -w backend-src --exec babel-node backend-src/index.js",
"frontend:build": "npx webpack --progress --config webpack.config.js",
"frontend:dev": "npx webpack --progress --watch --config webpack.config.js",
"build": "npm run clean && npm run backend:build && npm run frontend:build",
"build:prod": "npm run clean && NODE_ENV=production npm run backend:build && NODE_ENV=production npm run frontend:build -- --no-progress",
"start": "node dist/index.js",
"attributions": "yarn licenses --silent generate-disclaimer > frontend-src/static/3rdpartylibraries.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ldjam-aaa/pass-it-on.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ldjam-aaa/pass-it-on/issues"
},
"homepage": "https://github.com/ldjam-aaa/pass-it-on#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"nodemon": "^2.0.3",
"text-transform-loader": "^2.0.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.1",
"vue-router": "^3.1.6",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@openfonts/open-sans-condensed_all": "^1.44.1",
"axios": "^0.19.2",
"bad-words": "^3.0.3",
"cookie-parser": "^1.4.5",
"core-js": "^3.6.5",
"express": "^4.17.1",
"fast-levenshtein": "^2.0.6",
"howler": "^2.1.3",
"js-cookie": "^2.2.1",
"sequelize": "^5.21.6",
"sqlite3": "^4.1.1",
"typeface-noto-serif-jp": "0.0.75",
"typeface-nova-mono": "0.0.72",
"uuid": "^7.0.3",
"vue-awesome-countdown": "^1.0.25",
"vue-cookies": "^1.7.0",
"vuex": "^3.1.3"
}
}