-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.88 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
{
"name": "somebirdscolorandsizeselection",
"version": "1.0.0",
"description": "Shoe color and selection service",
"main": "index.js",
"scripts": {
"start": "nodemon ./server/index.js",
"build": "webpack -w",
"test": "./node_modules/.bin/mocha --require @babel/register ./test",
"db:seed": "mysql -u student < ./db/createDB.sql && node ./db/create_tables.js && node ./db/generate_data.js",
"db:drop-tables": "node ./db/drop_tables.js",
"test:db-install": "brew install [email protected] && brew services start [email protected]",
"test:db-permission-setup": "brew services start [email protected] && /usr/local/opt/[email protected]/bin/mysql -u root < ./db/createStudentAccount.sql",
"test:db-seed": " /usr/local/opt/[email protected]/bin/mysql -u student < ./db/createDB.sql && node ./db/create_tables.js && node ./db/generate_data.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7MIMIRA/somebirdsColorAndSizeSelection.git"
},
"author": "7MIMIRA",
"license": "ISC",
"bugs": {
"url": "https://github.com/7MIMIRA/somebirdsColorAndSizeSelection/issues"
},
"homepage": "https://github.com/7MIMIRA/somebirdsColorAndSizeSelection#readme",
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"axios": "^0.21.0",
"babel-loader": "^8.1.0",
"cors": "^2.8.5",
"css-loader": "^5.0.1",
"express": "^4.17.1",
"mysql2": "^2.2.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-modal": "^3.12.1",
"sequelize": "^6.3.5",
"style-loader": "^2.0.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-function-bind": "^7.12.1",
"@babel/register": "^7.12.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"mocha": "^8.2.1",
"mocha-jsdom": "^2.0.0",
"nodemon": "^2.0.6"
}
}