-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
{
"name": "screeps-tools",
"version": "3.0.0",
"description": "Tools to help players of the Programming MMO Screeps",
"keywords": [
"screeps",
"react",
"typescript"
],
"homepage": "https://screepers.github.com/screeps-tools",
"bugs": "https://github.com/screepers/screeps-tools/issues",
"license": "MIT",
"author": "Xilexio",
"contributors": [
"Xilexio",
"admon84",
"Arcath"
],
"repository": {
"type": "git",
"url": "https://github.com/screepers/screeps-tools.git"
},
"scripts": {
"deploy": "npm run build-prod && gh-pages -d static",
"build-prod": "rollup -c --environment BUILD:production && tsc",
"build": "rollup -c && tsc",
"watch": "rollup -c -w && tsc"
},
"devDependencies": {
"@types/lz-string": "^1.3.34",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.6",
"@types/react-select": "^4.0.15",
"@types/reactstrap": "^8.5.1",
"gh-pages": "^5.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"bootstrap": "^4.6.1",
"lz-string": "^1.4.4",
"postcss": "^8.2.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-select": "^4.3.1",
"reactstrap": "^8.10.1",
"rollup": "^2.46.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-less": "^1.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript3": "^1.1.2",
"typescript": "^4.8.4"
}
}