This repository has been archived by the owner on Sep 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "cppd-medical-report",
"private": true,
"keywords": [],
"dependencies": {
"@sailshq/connect-redis": "^3.2.1",
"@sailshq/lodash": "^3.10.3",
"@sailshq/socket.io-redis": "^5.2.0",
"axios": "^0.19.2",
"bcrypt": "^3.0.8",
"connect-flash": "^0.1.1",
"connect-pg-simple": "^6.1.0",
"consolidate": "^0.15.1",
"continuation-local-storage": "^3.2.1",
"dotenv": "^8.2.0",
"grunt": "1.0.4",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"nunjucks": "^3.2.0",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sails": "^1.2.3",
"sails-hook-grunt": "^4.0.0",
"sails-hook-orm": "^2.1.1",
"sails-hook-sequelize": "^1.2.1",
"sails-hook-sequelize-blueprints": "^0.3.0",
"sails-hook-sockets": "^2.0.0",
"sequelize": "^5.21.5",
"skipper-azure": "^0.1.2",
"social-insurance-number": "^0.1.0",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@cdssnc/a11y-tracker-client": "^1.1.2",
"@csstools/postcss-sass": "^4.0.0",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@symfony/webpack-encore": "^0.28.3",
"axe-core": "^3.5.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"cypress": "^4.1.0",
"cypress-axe": "^0.5.3",
"eslint": "5.16.0",
"faker": "^4.1.0",
"mini-css-extract-plugin": "^0.8.2",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.0.1",
"sequelize-cli": "^5.5.1",
"sqlite3": "^4.1.1",
"tailwindcss": "^1.2.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.0",
"vue-template-compiler": "^2.6.11",
"webpack-dev-server": "^3.10.3",
"webpack-notifier": "^1.8.0"
},
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "nodemon --exec NODE_ENV=development node app.js",
"debug": "nodemon --inspect-brk app.js",
"lint": "./node_modules/eslint/bin/eslint.js . --max-warnings=300 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"db:install": "docker pull postgres:latest",
"db:start": "docker run --rm -p 5432:5432 -d --name postgres-dev postgres:11",
"db:stop": "docker stop postgres-dev",
"db:migrate": "npx sequelize-cli db:migrate",
"db:migrate:undo": "npx sequelize-cli db:migrate:undo:all",
"db:seed": "npx sequelize-cli db:seed:all",
"db:seed:undo": "npx sequelize-cli db:seed:undo:all",
"cypress:open": "cypress open",
"start:dev": "nodemon --exec NODE_ENV=development node app.js",
"start:test": "nodemon --exec FEATURE_AUTH=true NODE_ENV=testing node app.js",
"cypress:run:test": "NODE_ENV=testing cypress run"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/samojled/sails-starter-2.git"
},
"nodemonConfig": {
"ext": "js,json,scss",
"ignore": [
"config/locales/*.json",
"sessions/*.json",
"cypress/**/*.js"
]
},
"author": "samojled",
"license": "",
"engines": {
"node": "^12.8"
}
}