forked from tianyu139/nasigoreng
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 3.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "nasi-goreng",
"version": "0.1.0",
"description": "UCLA SSA Portal",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/TypeScript-Node-Starter"
},
"author": "UCLA SSA",
"license": "MIT",
"scripts": {
"deploy": "npm run clean && npm run build && yes | gcloud app deploy",
"start": "npm run serve",
"build": "npm run build-ts && npm run build-parcel",
"clean": "rm -rf dist/",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node,Frontend\" -c \"cyan.bold,green.bold,red.bold\" \"npm run watch-ts\" \"npm run watch-node\" \"npm run watch-parcel\"",
"build-parcel": "parcel build src/static/index.html -d dist/static",
"watch-parcel": "parcel src/static/index.html -d dist/static",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node,Frontend\" -c \"cyan.bold,green.bold,red.bold\" \"npm run watch-ts\" \"npm run serve-debug\" \"npm run watch-parcel\""
},
"dependencies": {
"@google-cloud/storage": "^2.3.4",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"cheerio": "^1.0.0-rc.2",
"concurrently": "^3.6.1",
"connect-mongo": "^2.0.3",
"dateformat": "^3.0.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"markdown-toc": "^1.2.0",
"mongoose": "^5.4.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"react": "^16.6.3",
"react-bootstrap-typeahead": "^3.2.4",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1",
"reactstrap": "^6.5.0",
"remarkable": "^1.7.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@types/body-parser": "^1.17.0",
"@types/cheerio": "^0.22.10",
"@types/connect-mongo": "0.0.37",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.11",
"@types/google-cloud__storage": "^1.7.2",
"@types/jest": "^23.3.10",
"@types/passport": "^0.4.7",
"@types/passport-facebook": "^2.1.8",
"@types/react-bootstrap-typeahead": "^3.2.1",
"@types/react-dom": "^16.0.11",
"@types/react-router-dom": "^4.3.1",
"@types/reactstrap": "^6.4.3",
"@types/remarkable": "^1.7.2",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.15",
"autoprefixer": "^9.8.2",
"jest": "^23.6.0",
"node-sass": "^4.14.1",
"nodemon": "^1.18.9",
"parcel-bundler": "^1.11.0",
"postcss-modules": "^1.4.1",
"sass": "^1.22.12",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.9"
}
}