-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
31 lines (31 loc) · 1004 Bytes
/
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
{
"name": "swag",
"version": "0.1.0",
"main": "server/index.js",
"license": "MIT",
"private": true,
"scripts": {
"test": "NODE_ENV=test cypress run",
"cy:open": "cypress open",
"test:server": "yarn --cwd ./server test",
"test:frontend": "yarn --cwd ./frontend test",
"test:all": "concurrently yarn:test yarn:test:frontend yarn:test:server",
"build:server": "yarn --cwd ./server",
"build:frontend": "yarn --cwd ./frontend && yarn --cwd ./frontend build --prod",
"start:frontend": "yarn --cwd ./frontend start",
"start:server": "nodemon ./server index.js",
"docs": "apidoc -e node_modules -e docs -o docs/ -i server",
"start:all": "concurrently yarn:start:server yarn:start:frontend"
},
"devDependencies": {
"cypress": "^8.3.1",
"cypress-file-upload": "^5.0.8",
"knex": "^2.1.0",
"pg": "^8.7.1"
},
"dependencies": {
"concurrently": "^7.2.1",
"eslint-plugin-ember": "^8.10.1",
"eslint-plugin-node": "^11.1.0"
}
}