-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.51 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": "descartae-server",
"version": "0.1.0",
"description": "The Descartaê data management service",
"private": true,
"scripts": {
"start": "npm run build:digest && node build/index.js",
"seed": "npm run build:digest && node build/index.js --seed",
"clean": "rm -rf build",
"build:digest": "npm run clean && webpack --config-name digest",
"build:watch": "npm run clean && webpack --config-name watch",
"test": "standard && jest",
"prettify": "standard --fix"
},
"dependencies": {
"@google/maps": "^0.4.5",
"bcryptjs": "^2.4.3",
"cors": "^2.8.4",
"dataloader": "^1.3.0",
"express": "^4.16.2",
"express-jwt": "^5.3.0",
"graphql": "^0.11.7",
"graphql-server-express": "^1.3.2",
"graphql-tools": "^2.18.0",
"jsonwebtoken": "^8.1.0",
"mongodb": "^2.2.33",
"npm-run-all": "^4.1.1",
"ramda": "^0.25.0",
"readline-sync": "^1.4.8",
"source-map-support": "^0.5.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.4.1",
"dotenv-webpack": "^1.5.4",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"standard": "^10.0.3",
"start-server-webpack-plugin": "^2.2.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"./build"
]
}
}