-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.8 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
{
"name": "@stormid/frontend-test",
"version": "1.0.0",
"description": "https://careers.stormid.com/jobs",
"author": "stormid",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stormid/frontend-test.git"
},
"bugs": {
"url": "https://github.com/stormid/frontend-test/issues"
},
"main": "index.js",
"keywords": [
"stormid",
"frontend",
"test"
],
"scripts": {
"api": "node api",
"build": "webpack --mode production",
"db:create": "npm run db:migrate && npm run db:seed",
"db:migrate": "node_modules/.bin/sequelize db:migrate",
"db:seed": "node_modules/.bin/sequelize db:seed:all",
"postinstall": "npm run db:create",
"start": "concurrently \"webpack serve --mode development\" \"node api\"",
"test": "jest"
},
"jest": {
"testURL": "http://localhost"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.12.17",
"@babel/preset-env": "^7.13.10",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"clear": "^0.1.0",
"concurrently": "^6.0.0",
"cors": "^2.8.5",
"css-loader": "^5.1.2",
"fast-async": "^7.0.6",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"sass-loader": "^11.0.1",
"sequelize": "^6.5.0",
"sequelize-cli": "^6.2.0",
"sqlite3": "^5.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"express": "^4.17.1",
"uuid": "^8.3.2"
}
}