forked from paypay/FullStackEngineerChallenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.13 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
{
"name": "fullstackengineerchallenge",
"version": "1.0.0",
"description": "This is an interview challengs. Please feel free to fork. Pull Requests will be ignored.",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "run-p watch:*",
"watch:client": "chokidar 'src/**/*.elm' -c 'npm run build'",
"watch:server": "nodemon api/app.js",
"init:db": "node api/initDb.js",
"build": "elm make src/Main.elm --output=build/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnaudchenyensu/FullStackEngineerChallenge.git"
},
"author": "Arnaud Chenyensu",
"license": "ISC",
"bugs": {
"url": "https://github.com/arnaudchenyensu/FullStackEngineerChallenge/issues"
},
"homepage": "https://github.com/arnaudchenyensu/FullStackEngineerChallenge#readme",
"dependencies": {
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"knex": "^0.17.3",
"sqlite3": "^4.0.8"
},
"devDependencies": {
"chokidar-cli": "^1.2.2",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5"
}
}