-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.06 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
{
"name": "masterchef",
"version": "1.0.0",
"description": "webapp for recipes",
"main": "server.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server.js",
"client": "node start-client.js",
"dev": "echo \"This command has been deprecated. Use 'npm start'\" && exit 1",
"lint": "eslint .",
"test": "jest",
"preprocess": "node preprocess.js",
"client-build": "node build-client.js",
"build": "concurrently \"npm run preprocess\" \"npm run client-build\""
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/masterchef-client/"
]
},
"author": "Tony Li",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.4.0",
"eslint": "^3.19.0",
"eslint-config-kandl": "git+https://github.com/bbc/kandl-eslint-config.git",
"jest": "^19.0.2"
},
"dependencies": {
"bluebird": "^3.5.0",
"express": "^4.15.2"
}
}