-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.71 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
{
"name": "spotify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:client": "tsc -p client",
"build:server": "tsc -p server",
"build:client:w": "tsc -w -p client",
"build:css": "node-sass --recursive --output ./dist/client --source-map true --source-map-contents ./client/scss",
"build:css:w": "node-sass -w --recursive --output ./dist/client --source-map true --source-map-contents ./client/scss",
"build:copy": "mkdir -p ./dist/client && cp -R ./statics/assets ./dist/client",
"build:deps": "mkdir -p ./dist/client/deps && cp node_modules/spotify-web-api-js/src/spotify-web-api.js ./dist/client/deps",
"build": "npm run build:client && npm run build:server && npm run build:css && npm run build:copy",
"start:server:dev": "nodemon",
"start": "(npm run build:copy && npm run build:client:w & npm run build:css:w & npm run start:server:dev)",
"build:all": "npm run build && npm run build:deps",
"start:prod": "NODE_ENV=production node dist/server/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/crypto-js": "^3.1.47",
"@types/express": "^4.17.7",
"@types/material-design-lite": "^1.1.16",
"@types/react": "^16.9.21",
"@types/react-dom": "^16.9.5",
"@types/redux": "^3.6.0",
"aws-xray-sdk": "^3.2.0",
"axios": "^0.19.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"nodemon": "^2.0.4",
"spotify-web-api-js": "^1.4.0",
"ts-node": "^8.10.2",
"typescript": "^4.0.3"
},
"devDependencies": {
"ejs-lint": "^1.1.0",
"livereload": "^0.9.1",
"node-sass": "^7.0.0"
}
}