-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.06 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
{
"name": "computer-science-training",
"version": "1.0.0",
"repository": "https://github.com/torendo/computer-science-training.git",
"author": "Stanislav Proshkin <toren4eg@gmail.com> (https://github.com/torendo)",
"license": "MIT",
"scripts": {
"start": "concurrently --kill-others \"npm run build && node --experimental-modules --inspect ./dist/server/app.mjs\" \"npm run watch\"",
"watch": "node ./node_modules/gulp/bin/gulp.js watch",
"lint": "node ./node_modules/gulp/bin/gulp.js lint",
"build_prod": "node ./node_modules/gulp/bin/gulp.js build_prod",
"build": "node ./node_modules/gulp/bin/gulp.js build"
},
"dependencies": {
"express": "^4.16.2",
"lit-element": "^2.0.1",
"lit-html": "^1.0.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^7.8.1",
"gulp": "^4.0.0",
"gulp-rimraf": "^0.2.2",
"gulp-eslint": "^6.0.0",
"gulp-terser": "^1.1.7",
"rollup-stream": "^1.24.1",
"rollup-plugin-node-resolve": "^4.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}