-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.56 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
{
"name": "zwapp",
"version": "1.0.0",
"description": "Zwapp Comicbook Curator",
"main": "app.js",
"scripts": {
"test": "./vendor/bin/phpunit --bootstrap vendor/autoload.php tests/ZwappTest",
"mongod": "mongod --config mongod.conf",
"init_data_characters": "mongoimport --db zwapp --collection characters --drop --file ./mongo/characters_data.json",
"init_data_volumes": "mongoimport --db zwapp --collection volumes --drop --file ./mongo/volumes_data.json",
"init_data_publishers": "mongoimport --db zwapp --collection publishers --drop --file ./mongo/publishers_data.json",
"init_data": "npm run init_data_characters && npm run init_data_volumes && npm run init_data_publishers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmeisenthal/zwapp.git"
},
"author": "Joshua M. Eisenthal",
"license": "ISC",
"bugs": {
"url": "https://github.com/jmeisenthal/zwapp/issues"
},
"homepage": "https://github.com/jmeisenthal/zwapp#readme",
"dependencies": {
"eslint": "^6.8.0",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.12.1",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^4.2.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"svg-inline-loader": "^0.8.0",
"svg-url-loader": "^3.0.0",
"url-loader": "^2.1.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6"
}
}