-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 898 Bytes
/
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
{
"name": "toy-stock-market",
"version": "2.0.1",
"engineStrict": true,
"engines": {
"node": ">=8.9"
},
"description":
"trying to grasp the concept of the stock market, this is the most straightforward implementation that I could come up with",
"main": "dist/server.js",
"scripts": {
"prestart": "npm run build",
"start": "node dist/server.js",
"build": "cd src && babel **/*.js -d ../dist",
"build:watch": "cd src && babel --watch src/**/*.js -d ../dist",
"flow": "flow check"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"flow-bin": "^0.61.0",
"flow-typed": "^2.2.3"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.2"
}
}