generated from BuildForSDG/js-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.51 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
{
"name": "js-starter",
"version": "0.0.1",
"description": "A boilerplate for starting js code",
"keywords": [
"js-starter",
"boilerplate"
],
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "__tests__"
},
"scripts": {
"test": "cross-env NODE_ENV=test jest --runInBand --detectOpenHandles --testTimeout=30000 --forceExit",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"lint": "eslint \"src/**/*.js\" && eslint \"server/**\" && eslint \"__tests__/*.test.js\"",
"build": "yarn clean && NODE_ENV=production parcel build src/** --public-url=/",
"clean": "rimraf dist",
"dev": "parcel watch ./src/index.html & nodemon server/index.js",
"start": "parcel ./src/index.html & node server/index.js"
},
"author": {
"name": "Build For SDG",
"email": "[email protected]"
},
"homepage": "https://github.com/BuildForSDG/js-starter#readme",
"repository": {
"type": "git",
"url": "https://github.com/BuildForSDG/js-starter.git"
},
"bugs": {
"url": "https://github.com/BuildForSDG/js-starter/issues"
},
"license": "MIT",
"dependencies": {
"bcrypt": "^4.0.1",
"chai": "^4.2.0",
"compression": "^1.7.4",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"helmet": "^3.22.0",
"iconv-lite": "^0.5.1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-facebook-token": "^3.3.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"proxyquire": "^2.1.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sequelize": "^5.21.10",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"sqlite3": "^4.2.0",
"supertest": "^4.0.2",
"tedious": "^8.3.0",
"umzug": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.10.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.4.0",
"babel-preset-react": "^6.24.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.4.0",
"nodemon": "^2.0.4",
"parcel-bundler": "^1.12.4",
"rimraf": "^2.6.3"
},
"browserslist": [
"last 1 Chrome versions"
]
}