-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.62 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
{
"name": "traintickets.to",
"version": "0.1.0",
"private": false,
"dependencies": {
"@planar/ticket-wallet": "^0.4.0",
"autobind-decorator": "^2.4.0",
"axios": "^0.18.0",
"memoized-class-decorator": "^1.6.1",
"moment": "^2.23.0",
"react": "^16.7.0",
"react-autosuggest": "^9.4.3",
"react-datepicker": "^2.0.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"scroll-into-view-if-needed": "^2.2.20",
"typescript-debounce-decorator": "0.0.17",
"web3": "^1.0.0-beta.37",
"web3-providers-ws": "^1.0.0-beta.37"
},
"scripts": {
"start-js": "react-scripts-ts start",
"start": "npm-run-all -p watch-css start-js",
"dev": "REACT_APP_ENV=dev npm start",
"build-js": "react-scripts-ts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"build-css": "node-sass --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"postinstall": "rm -f node_modules/web3/index.d.ts"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/moment": "^2.13.0",
"@types/node": "^9.6.41",
"@types/react": "^16.7.20",
"@types/react-autosuggest": "^9.3.6",
"@types/react-datepicker": "^2.0.2",
"@types/react-dom": "^16.0.11",
"@types/react-router-dom": "^4.3.1",
"@types/web3": "^1.0.14",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"react-scripts-ts": "^3.1.0",
"typescript": "^3.2.2"
}
}