-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 KB
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
{
"name": "okazajo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run tsc && parcel client/index.html",
"clean:dist": "scripty",
"concurrently": "concurrently",
"dev:client": "parcel client/index.html",
"dev:server": "scripty",
"nodemon": "nodemon",
"test": "mocha --exit --require ts-node/register/type-check --bail test/server/index.ts",
"tsc": "tsc"
},
"author": "",
"license": "AGPLv3",
"engines": {
"node": ">=8.x",
"npm": ">=5.x"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3",
"moment": "^2.22.2",
"rc-calendar": "^9.7.0",
"rc-select": "^8.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"@types/node": "^10.7.1",
"concurrently": "^3.6.1",
"express-pino-logger": "^4.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"parcel-bundler": "^1.12.3",
"pino-pretty": "^2.1.0",
"react-router-dom": "^4.3.1",
"scripty": "^1.7.2",
"supertest": "^3.1.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"scripty": {
"silent": true
}
}