-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 2.12 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
{
"scripts": {
"install-prerequisites": "npm i --global --production windows-build-tools",
"build": "npm run build-front & npm run build-api",
"build-front": "gulp build-front --gulpfile scripts/gulpfile.js",
"autobuild-front": "gulp autobuild-front --gulpfile scripts/gulpfile.js",
"build-api": "gulp build-api --gulpfile scripts/gulpfile.js",
"autobuild-api": "gulp autobuild-api --gulpfile scripts/gulpfile.js",
"start": "npm run start-api && npm run start-front",
"start-front": "start build/front/website/register.html",
"start-api": "nodemon build/api",
"lint": "eslint \"src/**/*.js\"",
"test": "cross-env NODE_ENV=test npm run test-front & npm run test-api",
"test-front": "cross-env NODE_ENV=test gulp test-front --gulpfile scripts/gulpfile.js",
"autotest-front": "cross-env NODE_ENV=test gulp autotest-front --gulpfile scripts/gulpfile.js",
"test-api": "cross-env NODE_ENV=test gulp test-api --gulpfile scripts/gulpfile.js",
"autotest-api": "cross-env NODE_ENV=test gulp autotest-api --gulpfile scripts/gulpfile.js",
"package-api": "cross-env gulp package-api --gulpfile scripts/gulpfile.js"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.4.5",
"audio-loader": "^1.0.3",
"audio-play": "^2.2.1",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"cross-env": "^6.0.3",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"pkg": "^4.4.0",
"puppeteer": "^1.18.0",
"supertest": "^4.0.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
},
"dependencies": {
"nodemon": "^1.19.1"
}
}