-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 2.44 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
72
73
{
"name": "imagel",
"version": "1.0.0",
"description": "open source simple image sharing project",
"main": "public/index.js",
"repository": "https://github.com/samyouaret/imagel.git",
"author": "samyouaret <samyouaret13@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "yarn run buildcss & webpack && nodemon public/index.js",
"buildcss": "postcss resources/css/*.css --base --dir public/css --env=dev --watch",
"watch": "yarn run buildcss & nodemon public/index.js -w & webpack --w --mode development",
"build": "webpack --mode production",
"migrate": "sequelize-cli db:migrate",
"seed": "NODE_ENV=test sequelize-cli db:seed:all",
"migrate:reset": "sequelize-cli db:migrate:undo:all && yarn run migrate",
"pretest": "NODE_ENV=test yarn run migrate:reset && yarn run seed",
"test": "NODE_ENV=test jest -- tests --runInBand --detectOpenHandles",
"coverage": "NODE_ENV=test yarn run pretest && jest -- tests --coverage && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"aws-sdk": "^2.918.0",
"babel-loader": "^8.1.0",
"bcrypt": "^5.0.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.6.0",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sequelize": "^6.3.3",
"tailwindcss": "^1.6.2",
"webpack-node-externals": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@fullhuman/postcss-purgecss": "^2.3.0",
"autoprefixer": "^9.8.6",
"coveralls": "^3.1.0",
"cssnano": "^4.1.10",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"postcss": "^7.0.32",
"postcss-cli": "^7.1.1",
"sequelize-cli": "^6.2.0",
"sqlite3": "^5.0.0",
"supertest": "^4.0.2",
"terser-webpack-plugin": "^3.0.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}